Skip to content

Commit

Permalink
that commit broke the "use" statement, this fixes it
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevan Little committed May 22, 2013
1 parent af5f0a3 commit bc0a748
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/scala/org/moe/parser/MoeProductions.scala
Expand Up @@ -489,11 +489,11 @@ trait MoeProductions extends MoeLiterals with JavaTokenParsers with PackratParse

lazy val simpleStatement: Parser[AST] = (
variableDeclaration
| multiVariableDeclaration
| expression
| multiVariableDeclaration
| useStatement
| expression
| multiVariableAssignment
| multiAttributeAssignment
| useStatement
)

/**
Expand Down

0 comments on commit bc0a748

Please sign in to comment.