()
| 1489 | } |
| 1490 | |
| 1491 | private String matchId() { |
| 1492 | int old = pos(); |
| 1493 | String id = _lexer.matchId(); |
| 1494 | if( id==null ) return null; |
| 1495 | if( !KEYWORDS.contains(id) ) return id; |
| 1496 | pos(old); |
| 1497 | return null; |
| 1498 | } |
| 1499 | |
| 1500 | // Require an exact match |
| 1501 | private Parser require(String syntax) { require(null, syntax); return this; } |
no test coverage detected