Fix conflation of finished items w/ different precedence

This commit is contained in:
Max Brunsfeld 2015-10-17 22:54:56 -07:00
parent 84fe01e145
commit 1983bcfb60
16 changed files with 19073 additions and 18250 deletions

View file

@ -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
===========================================