Found that the bug is reported from this block of the server.js in visual studio code's Haxe Language Server.
if(!haxeLanguageServer_HaxeServer.reVersion.match(output)) {
var params2 = { type : 1, message : "Error parsing Haxe version " + JSON.stringify(output)};
var message2 = { jsonrpc : "2.0", method : "window/showMessage"};
if(params2 != null) {
message2.params = params2;
}
_gthis.context.protocol.writeMessage(message2);
return;
}
It renders me unable to build, where I get 'Error Compilation Failed.' It doesn't appear to be project dependant as all of my projects from https://github.com/jrdoughty/Kha-examples seem to get it, all of which have been in working order before.