()
| 1594 | } |
| 1595 | |
| 1596 | private String matchId() { |
| 1597 | int old = pos(); |
| 1598 | String id = _lexer.matchId(); |
| 1599 | if( id==null ) return null; |
| 1600 | if( !KEYWORDS.contains(id) ) return id; |
| 1601 | pos(old); |
| 1602 | return null; |
| 1603 | } |
| 1604 | |
| 1605 | // Require an exact match |
| 1606 | private Parser require(String syntax) { require(null, syntax); return this; } |
no test coverage detected