Get the specific Token.
(int index)
| 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) { |
nothing calls this directly
no test coverage detected