Issue #575. Allowing implicit objects to force implicit calls.

This commit is contained in:
Jeremy Ashkenas
2010-08-14 19:56:00 -04:00
parent 975b82f09b
commit 7a0d95c612
7 changed files with 61 additions and 30 deletions

View File

@@ -600,9 +600,8 @@ for name, alternatives of grammar
# rules, and the name of the root. Reverse the operators because Jison orders
# precedence from low to high, and we have it high to low
# (as in [Yacc](http://dinosaur.compilertools.net/yacc/index.html)).
exports.parser = new Parser {
exports.parser = new Parser
tokens: tokens.join ' '
bnf: grammar
operators: operators.reverse()
startSymbol: 'Root'
}