1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

removing an unused rule in Root.

This commit is contained in:
Jeremy Ashkenas 2010-11-13 18:13:09 -05:00
parent 5de73f6c25
commit 7c7eccf1f2
3 changed files with 162 additions and 167 deletions

View file

@ -17,8 +17,6 @@
Root: [ Root: [
o('', function() { o('', function() {
return new Expressions; return new Expressions;
}), o('TERMINATOR', function() {
return new Expressions;
}), o('Body'), o('Block TERMINATOR') }), o('Body'), o('Block TERMINATOR')
], ],
Body: [ Body: [

File diff suppressed because one or more lines are too long

View file

@ -57,7 +57,6 @@ grammar =
# all parsing must end here. # all parsing must end here.
Root: [ Root: [
o '', -> new Expressions o '', -> new Expressions
o 'TERMINATOR', -> new Expressions
o 'Body' o 'Body'
o 'Block TERMINATOR' o 'Block TERMINATOR'
] ]