Navigation Menu

Skip to content

Commit

Permalink
delete this comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevan Little committed Apr 3, 2013
1 parent 034b446 commit c178a42
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/scala/org/moe/parser/MoeProductions.scala
Expand Up @@ -365,7 +365,6 @@ trait MoeProductions extends MoeLiterals with JavaTokenParsers with PackratParse
}

// def forLoop = "for" ~ "(" ~> expression <~ ";" ~> expression <~ ";" ~> expression <~ ")" ~ block
// def whileLoop = "if" ~ "(" ~> expression <~ ")" ~ block
// def foreachLoop = "for(each)?".r ~ varDeclare ~ "(" ~> expression <~ ")" ~ block

def tryBlock: Parser[TryNode] = ("try" ~> block) ~ rep(catchBlock) ~ rep(finallyBlock) ^^ {
Expand Down

0 comments on commit c178a42

Please sign in to comment.