Chromium Code Reviews| Index: src/token.cc |
| =================================================================== |
| --- src/token.cc (revision 5192) |
| +++ src/token.cc (working copy) |
| @@ -53,4 +53,12 @@ |
| #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 |