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

Method getNextToken

java/org/apache/tomcat/util/json/JSONParser.java:639–647  ·  view source on GitHub ↗

Get the next Token.

()

Source from the content-addressed store, hash-verified

637
638 /** Get the next Token. */
639 final public Token getNextToken() {
640 if ((token = jj_nt).next != null) {
641 jj_nt = jj_nt.next;
642 } else {
643 jj_nt = jj_nt.next = token_source.getNextToken();
644 }
645 jj_gen++;
646 return token;
647 }
648
649 /** Get the specific Token. */
650 final public Token getToken(int index) {

Callers 4

JSONParserMethod · 0.45
ReInitMethod · 0.45
jj_consume_tokenMethod · 0.45
getTokenMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected