We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Found this by making a typo. Got no error from haxe compiler, but C# compilation failed:
class Main { public static function main() { untyped __cs__('System.Console.WriteLine({0})', missingIdentifier.someField); // => System.Console.WriteLine(global::haxe.lang.Runtime.getField([ ident not supported ], "someField", 968994086, true)); } }
The text was updated successfully, but these errors were encountered:
I think we can emit a compilation error in this case. Any other ideas?
Sorry, something went wrong.
Yeah, catching the error on haxe side sounds great
We might "just" need a proper cs.Syntax.code() to replace untyped __cs__(...)?
cs.Syntax.code()
untyped __cs__(...)
That too. But untyped __cs__ won't get removed in the nearest future anyway.
untyped __cs__
Successfully merging a pull request may close this issue.
Found this by making a typo. Got no error from haxe compiler, but C# compilation failed:
The text was updated successfully, but these errors were encountered: