Fix conflation of finished items w/ different precedence
This commit is contained in:
parent
84fe01e145
commit
1983bcfb60
16 changed files with 19073 additions and 18250 deletions
16
spec/fixtures/corpus/javascript/operators.txt
vendored
16
spec/fixtures/corpus/javascript/operators.txt
vendored
|
|
@ -119,6 +119,22 @@ boolean operators
|
|||
(bool_op
|
||||
(bool_op (identifier) (identifier))))))
|
||||
|
||||
==========================================
|
||||
boolean operator precedence
|
||||
=========================================
|
||||
|
||||
a && b(c) && d;
|
||||
|
||||
---
|
||||
|
||||
(program
|
||||
(expression_statement
|
||||
(bool_op
|
||||
(bool_op
|
||||
(identifier)
|
||||
(function_call (identifier) (arguments (identifier))))
|
||||
(identifier))))
|
||||
|
||||
===========================================
|
||||
type operators
|
||||
===========================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue