cleanup of Repeat.java
[sbp.git] / tests / java.tc
1 javacase {
2     input "1+1";
3     s    = Expr
4     Expr =       left:Expr ^"+" right:Expr
5          | num:: num:[0-9]+
6 }