(int prec, Precedence nextPrec)
| 221 | return null; |
| 222 | } |
| 223 | private static boolean rightIsExpr(int prec, Precedence nextPrec) { |
| 224 | if (nextPrec.leftAssoc) |
| 225 | return prec < nextPrec.value; |
| 226 | else |
| 227 | return prec <= nextPrec.value; |
| 228 | } |
| 229 | protected boolean match(Lexer lexer) throws ParseException { |
| 230 | return factor.match(lexer); |
| 231 | } |