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
case of
As Pavel wrote right now we get syntax error
case ax of _: A&X -> ... fails with: tmp.enso:27:12: error: Syntax is not supported yet: qualifiedNameSegment. 27 | _: A&X -> "Is A&X" | ^~~
case ax of _: A&X -> ...
fails with:
tmp.enso:27:12: error: Syntax is not supported yet: qualifiedNameSegment. 27 | _: A&X -> "Is A&X" | ^~~
The text was updated successfully, but these errors were encountered:
The AST looks reasonable:
> echo -e 'case ax of\n _: A&X -> 42' | cargo run -p enso-parser-debug --bin enso-parser-debug (BodyBlock #((CaseOf (Ident ax) #(((() (TypeAnnotated (Wildcard -1) ":" (OprApp (Ident A) (Ok "&") (Ident X))) "->" (Number () "42" ()))))) ()))
The syntax error probably originates in TreeToIr.
TreeToIr
Sorry, something went wrong.
Is this -parser or some engine label (-compiler or -language-server?)
-parser
-compiler
-language-server
JaroslavTulach
No branches or pull requests
As Pavel wrote right now we get syntax error
The text was updated successfully, but these errors were encountered: