()
| 1821 | } |
| 1822 | |
| 1823 | private String matchId() { |
| 1824 | int old = pos(); |
| 1825 | String id = _lexer.matchId(); |
| 1826 | if( id==null ) return null; |
| 1827 | if( !KEYWORDS.contains(id) ) return id; |
| 1828 | pos(old); |
| 1829 | return null; |
| 1830 | } |
| 1831 | |
| 1832 | // Require an exact match |
| 1833 | private Parser require(String syntax) { require(null, syntax); return this; } |
no test coverage detected