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

Method getToken

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

Get the specific Token.

(int index)

Source from the content-addressed store, hash-verified

4131
4132 /** Get the specific Token. */
4133 final public Token getToken(int index) {
4134 Token t = token;
4135 for (int i = 0; i < index; i++) {
4136 if (t.next != null) {
4137 t = t.next;
4138 } else {
4139 t = t.next = token_source.getNextToken();
4140 }
4141 }
4142 return t;
4143 }
4144
4145 private int jj_ntk_f() {
4146 if ((jj_nt = token.next) == null) {

Callers

nothing calls this directly

Calls 1

getNextTokenMethod · 0.45

Tested by

no test coverage detected