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:
parent
5de73f6c25
commit
7c7eccf1f2
3 changed files with 162 additions and 167 deletions
|
@ -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: [
|
||||||
|
|
326
lib/parser.js
326
lib/parser.js
File diff suppressed because one or more lines are too long
|
@ -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'
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue