ID : ('a'..'z'|'A'..'Z'|'_'|'/') ('a'..'z'|'A'..'Z'|'0'..'9'|'_'|'/') ;
()
| 541 | */ |
| 542 | |
| 543 | Token mID() { |
| 544 | // called from subTemplate; so keep resetting position during speculation |
| 545 | startCharIndex = input.index(); |
| 546 | startLine = input.getLine(); |
| 547 | startCharPositionInLine = input.getCharPositionInLine(); |
| 548 | consume(); |
| 549 | while ( isIDLetter(c) ) { |
| 550 | consume(); |
| 551 | } |
| 552 | return newToken(ID); |
| 553 | } |
| 554 | |
| 555 | /** <pre> |
| 556 | * STRING : '"' |
no test coverage detected