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
Another map/abstract-related issue, maybe similar to #9712. This fails compilation on many targets (JS, PHP, Lua), but not others (HL, Eval):
enum abstract Foo(String) { var Bar; } class Main { public static function main():Void { new Map<Foo, Int>().exists(Bar); } }
The error is:
Main.hx:6: characters 5-36 : error: Foo should be String Main.hx:6: characters 5-36 : ... have: (String) -> ... Main.hx:6: characters 5-36 : ... want: (Foo) -> ...
The text was updated successfully, but these errors were encountered:
Seems to compile on static targets, but fail on dynamic targets...
Sorry, something went wrong.
0da5cca
check arg types against original call args instead of an underlying t…
126d780
…ype upon handling multitype abstract casts (#10098)
make_static_call
No branches or pull requests
Another map/abstract-related issue, maybe similar to #9712. This fails compilation on many targets (JS, PHP, Lua), but not others (HL, Eval):
The error is:
The text was updated successfully, but these errors were encountered: