Home | History | Annotate | Download | only in compiler

Lines Matching defs:tk

70         Token tk = lookAheadTokens;
71 if (tk == null) {
72 lookAheadTokens = tk = currentToken; // reuse an object!
73 tk.next = null;
74 get(tk);
77 for (; i-- > 0; tk = tk.next)
78 if (tk.next == null) {
80 tk.next = tk2 = new Token();
84 currentToken = tk;
85 return tk.tokenId;