Chromium Code Reviews| Index: src/token.cc |
| diff --git a/src/token.cc b/src/token.cc |
| index 8cee99bb8b6e504fac9702ccbffb108045438a12..21fa9ee4d74823c95ed630512a246e4abcc34f25 100644 |
| --- a/src/token.cc |
| +++ b/src/token.cc |
| @@ -53,4 +53,12 @@ int8_t Token::precedence_[NUM_TOKENS] = { |
| #undef T |
| +#define KT(a, b, c) 'T', |
| +#define KK(a, b, c) 'K', |
| +const char Token::token_type[] = { |
| + TOKEN_LIST(KT, KK, IGNORE_TOKEN) |
| +}; |
| +#undef KT |
| +#undef KK |
| + |
| } } // namespace v8::internal |