Home | History | Annotate | Download | only in Chapter4

Lines Matching refs:CurTok

163 /// CurTok/getNextToken - Provide a simple token buffer.  CurTok is the current
165 /// lexer and updates CurTok with its results.
166 static int CurTok;
168 return CurTok = gettok();
177 if (!isascii(CurTok))
181 int TokPrec = BinopPrecedence[CurTok];
201 if (CurTok != '(') // Simple variable ref.
207 if (CurTok != ')') {
213 if (CurTok == ')') break;
215 if (CurTok != ',')
240 if (CurTok != ')')
251 switch (CurTok) {
272 int BinOp = CurTok;
305 if (CurTok != tok_identifier)
311 if (CurTok != '(')
317 if (CurTok != ')')
534 switch (CurTok) {