()
| 1470 | } |
| 1471 | |
| 1472 | private String matchId() { |
| 1473 | int old = pos(); |
| 1474 | String id = _lexer.matchId(); |
| 1475 | if( id==null ) return null; |
| 1476 | if( !KEYWORDS.contains(id) ) return id; |
| 1477 | pos(old); |
| 1478 | return null; |
| 1479 | } |
| 1480 | |
| 1481 | // Require an exact match |
| 1482 | private Parser require(String syntax) { require(null, syntax); return this; } |
no test coverage detected