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
#11168 caused a regression which went unnoticed until now:
// Main.hx import LibraryData; function main() { LibraryData.isCommitHash(); }
// LibraryData.hx class LibraryData { } function isCommitHash() { trace("Hello World"); }
The resulting dump:
[Call:Void] [Field:() -> Void] [TypeExpr pack.LibraryData:Class<pack.LibraryData>] [FStatic:() -> Void] pack._LibraryData.LibraryData_Fields_ isCommitHash:() -> Void;
The problem here is that the TypeExpr has the wrong path. This is what currently makes haxelib implode.
TypeExpr
The text was updated successfully, but these errors were encountered:
f8b8a01
[typer] fix module static resolution
253c23b
closes HaxeFoundation#11385
4b2d8de
Simn
No branches or pull requests
#11168 caused a regression which went unnoticed until now:
The resulting dump:
The problem here is that the
TypeExpr
has the wrong path. This is what currently makes haxelib implode.The text was updated successfully, but these errors were encountered: