MCPcopy Create free account
hub / github.com/apache/tomcat / getNextToken

Method getNextToken

java/org/apache/el/parser/ELParser.java:4121–4130  ·  view source on GitHub ↗

Get the next Token.

()

Source from the content-addressed store, hash-verified

4119
4120 /** Get the next Token. */
4121 final public Token getNextToken() {
4122 if (token.next != null) {
4123 token = token.next;
4124 } else {
4125 token = token.next = token_source.getNextToken();
4126 }
4127 jj_ntk = -1;
4128 jj_gen++;
4129 return token;
4130 }
4131
4132 /** Get the specific Token. */
4133 final public Token getToken(int index) {

Callers 4

jj_consume_tokenMethod · 0.45
jj_scan_tokenMethod · 0.45
getTokenMethod · 0.45
jj_ntk_fMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected