Fix handling of ubiquitous tokens used in grammar rules

This commit is contained in:
Max Brunsfeld 2014-07-01 20:47:35 -07:00
parent 59cc65c2e3
commit 83a1b9439e
30 changed files with 39086 additions and 32890 deletions

View file

@ -34,6 +34,18 @@ print(object.property);
(identifier)
(property_access (identifier) (identifier)))))
==========================================
parses property access across lines
==========================================
object
.someProperty
.otherProperty
---
(program (expression_statement
(property_access
(property_access (identifier) (identifier))
(identifier))))
===========================================
parses dynamic property access
==========================================