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

Unified Diff: src/token.h

Issue 1139773005: [destructuring] More tests for object literal pattern (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More tests + fixed a bug Created 5 years, 7 months 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
Index: src/token.h
diff --git a/src/token.h b/src/token.h
index cc7e9f8cbdc0b0a55c9429d3a425514897cff0ab..f80ade803ca74b34701ed7f814daf12c8d12aac1 100644
--- a/src/token.h
+++ b/src/token.h
@@ -61,7 +61,7 @@ namespace internal {
T(ASSIGN_SHL, "<<=", 2) \
T(ASSIGN_SAR, ">>=", 2) \
T(ASSIGN_SHR, ">>>=", 2) \
- T(ASSIGN_ADD, "+=", 2) \
+ T(ASSIGN_ADD, "+ASSIGN_ADD=", 2) \
arv (Not doing code reviews) 2015/05/18 13:12:53 Why?
Dmitry Lomov (no reviews) 2015/05/18 13:41:46 Oops. Undone (it's pathetic that no tests fail :()
T(ASSIGN_SUB, "-=", 2) \
T(ASSIGN_MUL, "*=", 2) \
T(ASSIGN_DIV, "/=", 2) \

Powered by Google App Engine
This is Rietveld 408576698