()
| 1762 | } |
| 1763 | |
| 1764 | private String matchId() { |
| 1765 | int old = pos(); |
| 1766 | String id = _lexer.matchId(); |
| 1767 | if( id==null ) return null; |
| 1768 | if( !KEYWORDS.contains(id) ) return id; |
| 1769 | pos(old); |
| 1770 | return null; |
| 1771 | } |
| 1772 | |
| 1773 | // Require an exact match |
| 1774 | private Parser require(String syntax) { require(null, syntax); return this; } |
no test coverage detected