Home | History | Annotate | Download | only in Chapter6

Lines Matching refs:IdentifierStr

42 static std::string IdentifierStr;  // Filled in if tok_identifier
54 IdentifierStr = LastChar;
56 IdentifierStr += LastChar;
58 if (IdentifierStr == "def") return tok_def;
59 if (IdentifierStr == "extern") return tok_extern;
60 if (IdentifierStr == "if") return tok_if;
61 if (IdentifierStr == "then") return tok_then;
62 if (IdentifierStr == "else") return tok_else;
63 if (IdentifierStr == "for") return tok_for;
64 if (IdentifierStr == "in") return tok_in;
65 if (IdentifierStr == "binary") return tok_binary;
66 if (IdentifierStr == "unary") return tok_unary;
252 std::string IdName = IdentifierStr;
334 std::string IdName = IdentifierStr;
459 FnName = IdentifierStr;
496 ArgNames.push_back(IdentifierStr);