MCPcopy Index your code
hub / github.com/antlr/codebuff / nextToken

Method nextToken

output/java8/1.4.13/Compiler.java:113–120  ·  view source on GitHub ↗

Throw out \n and indentation tokens inside BIGSTRING_NO_NL

()

Source from the content-addressed store, hash-verified

111 lexer = new STLexer(group.errMgr, is, templateToken, group.delimiterStartChar, group.delimiterStopChar) {
112 /** Throw out \n and indentation tokens inside BIGSTRING_NO_NL */
113 @Override
114 public Token nextToken() {
115 Token t = super.nextToken();
116 while ( t.getType()==STLexer.NEWLINE || t.getType()==STLexer.INDENT ) {
117 t = super.nextToken();
118 }
119 return t;
120 }
121 };
122 }
123 else {

Callers

nothing calls this directly

Calls 1

getTypeMethod · 0.45

Tested by

no test coverage detected