MCPcopy Create free account
hub / github.com/antlr/codebuff / mID

Method mID

output/java/1.4.13/STLexer.java:529–539  ·  view source on GitHub ↗

ID : ('a'..'z'|'A'..'Z'|'_'|'/') ('a'..'z'|'A'..'Z'|'0'..'9'|'_'|'/') ;

()

Source from the content-addressed store, hash-verified

527 */
528
529 Token mID() {
530 // called from subTemplate; so keep resetting position during speculation
531 startCharIndex = input.index();
532 startLine = input.getLine();
533 startCharPositionInLine = input.getCharPositionInLine();
534 consume();
535 while ( isIDLetter(c) ) {
536 consume();
537 }
538 return newToken(ID);
539 }
540
541 /** <pre>
542 * STRING : '"'

Callers 2

insideMethod · 0.95
subTemplateMethod · 0.95

Calls 6

consumeMethod · 0.95
isIDLetterMethod · 0.95
newTokenMethod · 0.95
getCharPositionInLineMethod · 0.80
indexMethod · 0.65
getLineMethod · 0.45

Tested by

no test coverage detected