Home | History | Annotate | Download | only in Chapter3

Lines Matching refs:CurTok

156 /// CurTok/getNextToken - Provide a simple token buffer.  CurTok is the current
158 /// lexer and updates CurTok with its results.
159 static int CurTok;
161 return CurTok = gettok();
170 if (!isascii(CurTok))
174 int TokPrec = BinopPrecedence[CurTok];
194 if (CurTok != '(') // Simple variable ref.
200 if (CurTok != ')') {
206 if (CurTok == ')') break;
208 if (CurTok != ',')
233 if (CurTok != ')')
244 switch (CurTok) {
265 int BinOp = CurTok;
298 if (CurTok != tok_identifier)
304 if (CurTok != '(')
310 if (CurTok != ')')
516 switch (CurTok) {