Skip to content

Commit

Permalink
fix file name spell error, fix FunctionDeclaration bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wintercn committed Apr 30, 2012
1 parent 925f3c6 commit 27a66e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/SyntaticalParser.js → source/SyntacticalParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"ExpressionNoIn":[["AssignmentExpressionNoIn"], ["ExpressionNoIn", ",", "AssignmentExpressionNoIn"]],
"Statement":[["Block"], ["VariableStatement"], ["EmptyStatement"], ["ExpressionStatement"], ["IfStatement"], ["IterationStatement"], ["ContinueStatement"], ["BreakStatement"], ["ReturnStatement"], ["WithStatement"], ["LabelledStatement"], ["SwitchStatement"], ["ThrowStatement"], ["TryStatement"], ["DebuggerStatement"]],
"Block":[["{", "}"], ["{", "StatementList", "}"]],
"StatementList":[["Statement"], ["StatementList", "Statement"], ["StatementList", "FunctionDeclaration"]],
"StatementList":[["FunctionDeclaration"], ["Statement"], ["StatementList", "Statement"], ["StatementList", "FunctionDeclaration"]],
"VariableStatement":[["var", "VariableDeclarationList", ";"]],
"VariableDeclarationList":[["VariableDeclaration"], ["VariableDeclarationList", ",", "VariableDeclaration"]],
"VariableDeclarationListNoIn":[["VariableDeclarationNoIn"], ["VariableDeclarationListNoIn", ",", "VariableDeclarationNoIn"]],
Expand Down

0 comments on commit 27a66e1

Please sign in to comment.