| 222 | } |
| 223 | static bool IsKeyWord(const std::string& name); |
| 224 | static bool IsKeyWord(int tag) { return CONST <= tag && tag < IDENTIFIER; } |
| 225 | bool IsKeyWord() const { return IsKeyWord(tag_); } |
| 226 | bool IsPunctuator() const { return 0 <= tag_ && tag_ <= ELLIPSIS; } |
| 227 | bool IsLiteral() const { return tag_ == LITERAL; } |
nothing calls this directly
no outgoing calls
no test coverage detected