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
:=
See neovim highlighting on this line.
The text was updated successfully, but these errors were encountered:
Failing test:
=============||| Multiple Assignments in Single Step =============||| ---- MODULE Test ---- (* --algorithm Test { variables x, y, z; { x := 0 || y := 0 || z := 0 } } *) ==== --------------||| (source_file (module (header_line) name: (identifier) (header_line) (block_comment (pcal_algorithm name: (identifier) (pcal_var_decls (pcal_var_decl (identifier)) (pcal_var_decl (identifier)) (pcal_var_decl (identifier)) ) (pcal_algorithm_body (pcal_assign (pcal_lhs (identifier_ref)) (assign) (nat_number) (vertvert) (pcal_lhs (identifier_ref)) (assign) (nat_number) (vertvert) (pcal_lhs (identifier_ref)) (assign) (nat_number) )) )) (double_line)))
The first := is parsed as a pluscal assign operator but all subsequent || and := tokens are parsed as infix operators in an expression.
assign
||
Work currently lives in pcal-multiassign branch.
pcal-multiassign
Sorry, something went wrong.
No branches or pull requests
See neovim highlighting on this line.
The text was updated successfully, but these errors were encountered: