progs/parser-combinators/comb2.sc
changeset 956 ae9782e62bdd
parent 955 47acfd7f9096
child 965 94f5cce73a4f
equal deleted inserted replaced
955:47acfd7f9096 956:ae9782e62bdd
   166   ((p"{" ~ Stmts ~ p"}").map{ case _ ~ y ~ _ => y } || 
   166   ((p"{" ~ Stmts ~ p"}").map{ case _ ~ y ~ _ => y } || 
   167    (Stmt.map(s => List(s))))
   167    (Stmt.map(s => List(s))))
   168 
   168 
   169 
   169 
   170 // Examples
   170 // Examples
       
   171 println(AExp.parse_all("2*2*2"))
   171 println(BExp.parse_all("5+3"))
   172 println(BExp.parse_all("5+3"))
   172 println(Stmt.parse_all("5==3"))
   173 println(Stmt.parse_all("5==3"))
   173 println(Stmt.parse_all("x2:=5+3"))
   174 println(Stmt.parse_all("x2:=5+3"))
   174 println(Block.parse_all("{x:=5;y:=8}"))
   175 println(Block.parse_all("{x:=5;y:=8}"))
   175 println(Block.parse_all("if(false)then{x:=5}else{x:=10}"))
   176 println(Block.parse_all("if(false)then{x:=5}else{x:=10}"))