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
Given
const y = new Y<3>(3);
It parses as something like:
expression: ConstructorCall { constructor: FunctionCall { function: VariableReference( "Y", 1003..1004, ), type_arguments: Some( [ NumberLiteral( Number( 3.0, ), 1005..1006, ), ], ), arguments: [ Standard( NumberLiteral( Number( 3.0, ), 1008..1009, ), ), ], is_optional: false, position: 1003..1010, }, type_arguments: None, arguments: None, position: 999..1010, },
Something around here (or possibly return precedence) is broken when type arguments show up
ezno/parser/src/expressions/mod.rs
Lines 471 to 507 in e69e2c5
The text was updated successfully, but these errors were encountered:
Fix for #199
523bf16
- Also adds type check support for it - Emoji fix in CLI
kaleidawave
Successfully merging a pull request may close this issue.
Given
It parses as something like:
Something around here (or possibly return precedence) is broken when type arguments show up
ezno/parser/src/expressions/mod.rs
Lines 471 to 507 in e69e2c5
The text was updated successfully, but these errors were encountered: