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