mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
fix grammar in expr17
This commit is contained in:
parent
4b8e90f8fe
commit
6e428f97e5
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ Expr* parse_expr20(Lexer& lex, CodeBlob& code, bool nv) {
|
|||
return res;
|
||||
}
|
||||
|
||||
// parse E { ( << | >> | >>~ | >>^ ) E }
|
||||
// parse E { ( << | >> | ~>> | ^>> ) E }
|
||||
Expr* parse_expr17(Lexer& lex, CodeBlob& code, bool nv) {
|
||||
Expr* res = parse_expr20(lex, code, nv);
|
||||
while (lex.tp() == _Lshift || lex.tp() == _Rshift || lex.tp() == _RshiftC || lex.tp() == _RshiftR) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue