Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: src/parsing/token.cc

Issue 1439693002: [runtime] Support Proxy setPrototypeOf trap (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-11-09_new_Proxy_1417063011
Patch Set: merging with master Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/parsing/token.h ('k') | src/regexp/bytecodes-irregexp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/token.cc
diff --git a/src/parsing/token.cc b/src/parsing/token.cc
index 7edfefa82100c16a11db2773e18b4f3211e34ffd..e4d171dee787c05969ac8e622a2a2ed6201b15a2 100644
--- a/src/parsing/token.cc
+++ b/src/parsing/token.cc
@@ -10,31 +10,23 @@ namespace v8 {
namespace internal {
#define T(name, string, precedence) #name,
-const char* const Token::name_[NUM_TOKENS] = {
- TOKEN_LIST(T, T)
-};
+const char* const Token::name_[NUM_TOKENS] = {TOKEN_LIST(T, T)};
#undef T
#define T(name, string, precedence) string,
-const char* const Token::string_[NUM_TOKENS] = {
- TOKEN_LIST(T, T)
-};
+const char* const Token::string_[NUM_TOKENS] = {TOKEN_LIST(T, T)};
#undef T
#define T(name, string, precedence) precedence,
-const int8_t Token::precedence_[NUM_TOKENS] = {
- TOKEN_LIST(T, T)
-};
+const int8_t Token::precedence_[NUM_TOKENS] = {TOKEN_LIST(T, T)};
#undef T
#define KT(a, b, c) 'T',
#define KK(a, b, c) 'K',
-const char Token::token_type[] = {
- TOKEN_LIST(KT, KK)
-};
+const char Token::token_type[] = {TOKEN_LIST(KT, KK)};
#undef KT
#undef KK
« no previous file with comments | « src/parsing/token.h ('k') | src/regexp/bytecodes-irregexp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698