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
According to https://nixos.org/manual/nix/unstable/expressions/language-operators.html and to testing -> and ++ and // should be parsed right-associative but are not currently.
echo "false -> true -> false" | cargo run --quiet --example from-stdin NODE_ROOT 0..23 { NODE_BIN_OP 0..22 { NODE_BIN_OP 0..13 { TOKEN_IDENT("false") 0..5 TOKEN_IMPLICATION("->") 6..8 TOKEN_IDENT("true") 9..13 } TOKEN_IMPLICATION("->") 14..16 TOKEN_IDENT("false") 17..22 } }
# nix repl false -> true -> false true (false -> true) -> false false
I think this only matters for implies and not the other two.
The text was updated successfully, but these errors were encountered:
Ma27
Successfully merging a pull request may close this issue.
Describe the bug
According to https://nixos.org/manual/nix/unstable/expressions/language-operators.html and to testing
-> and ++ and // should be parsed right-associative but are not currently.
Code Snippet to reproduce
Expected behavior
Additional context
I think this only matters for implies and not the other two.
The text was updated successfully, but these errors were encountered: