(Class<? extends ASTree> clazz, Parser exp,
Operators map)
| 184 | protected Operators ops; |
| 185 | protected Parser factor; |
| 186 | protected Expr(Class<? extends ASTree> clazz, Parser exp, |
| 187 | Operators map) |
| 188 | { |
| 189 | factory = Factory.getForASTList(clazz); |
| 190 | ops = map; |
| 191 | factor = exp; |
| 192 | } |
| 193 | public void parse(Lexer lexer, List<ASTree> res) throws ParseException { |
| 194 | ASTree right = factor.parse(lexer); |
| 195 | Precedence prec; |
nothing calls this directly
no test coverage detected