Fix operator precedence of '.' operator in js grammar
This commit is contained in:
parent
3cd031af38
commit
082560dd6e
5 changed files with 198 additions and 184 deletions
|
|
@ -153,7 +153,7 @@ _.each = _.forEach = function(obj, iterator, context) {
|
|||
(statement_block
|
||||
(if_statement (bool_op (identifier) (null)) (return_statement (identifier)))
|
||||
(if_statement
|
||||
(property_access (bool_op (property_access (identifier) (identifier)) (identifier)) (identifier))
|
||||
(bool_op (property_access (identifier) (identifier)) (property_access (identifier) (identifier)))
|
||||
(statement_block
|
||||
(for_statement
|
||||
(var_declaration (assignment (identifier) (number)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue