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
It's unclear whether these could be parsed better or not but I find it a little weird that the LHS or a binaryopcall is an operator
julia> CSTParser.parse("+++x == 0") 1:9 BinaryOpCall 1:5 BinaryOpCall 1:2 OP: PLUSPLUS 3:3 OP: PLUS 4:5 x 6:8 OP: EQEQ 9:9 INTEGER: 0
I would think those would be UnaryOpCalls.
UnaryOpCall
julia> CSTParser.parse("+++++x == 0") 1:11 BinaryOpCall 1:7 BinaryOpCall 1:2 OP: PLUSPLUS 3:4 OP: PLUSPLUS 5:7 UnaryOpCall 5:5 OP: PLUS 6:7 x 8:10 OP: EQEQ 11:11 INTEGER: 0
The text was updated successfully, but these errors were encountered:
ZacLN
No branches or pull requests
It's unclear whether these could be parsed better or not but I find it a little weird that the LHS or a binaryopcall is an operator
I would think those would be
UnaryOpCall
s.The text was updated successfully, but these errors were encountered: