diff options
Diffstat (limited to 'admin')
-rw-r--r-- | admin/grammars/grammar.wy | 2 | ||||
-rw-r--r-- | admin/grammars/js.wy | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/admin/grammars/grammar.wy b/admin/grammars/grammar.wy index a772c212360..4605e3c4f70 100644 --- a/admin/grammars/grammar.wy +++ b/admin/grammars/grammar.wy @@ -94,7 +94,7 @@ %token <open-paren> LBRACE "{" %token <close-paren> RBRACE "}" -;; Punctuations +;; Punctuation %type <punctuation> %token <punctuation> COLON ":" %token <punctuation> SEMI ";" diff --git a/admin/grammars/js.wy b/admin/grammars/js.wy index a01d64ec093..91dbff2330d 100644 --- a/admin/grammars/js.wy +++ b/admin/grammars/js.wy @@ -65,7 +65,7 @@ (start end &optional nonterminal depth returnonerror)) } -;; JAVE I prefere ecmascript-mode +;; JAVE I preferred ecmascript-mode. %languagemode ecmascript-mode javascript-mode ;; The default goal @@ -276,8 +276,8 @@ Statement : Block | BreakStatement | ReturnStatement | WithStatement - ; - + ; + FunctionDeclaration : FUNCTION VARIABLE FormalParameterListBlock Block (FUNCTION-TAG $2 nil $3) ; @@ -353,7 +353,7 @@ IterationExpression : WHILE OPEN_PARENTHESIS Expression CLOSE_PARENTHESIS Statem ContinueStatement : CONTINUE SEMICOLON ; -;;JAVE break needs labels +;;JAVE break needs labels BreakStatement : BREAK SEMICOLON ;; | BREAK identifier SEMICOLON ; |