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

Method nextToken

output/java8/1.4.17/Compiler.java:114–121  ·  view source on GitHub ↗

Throw out \n and indentation tokens inside BIGSTRING_NO_NL

()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

getTypeMethod · 0.45

Tested by

no test coverage detected