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

Unified Diff: src/parsing/preparser.h

Issue 1678303002: [es7] implement exponentiation operator proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update webkit test expectations Created 4 years, 10 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/parsing/preparser.h
diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
index 32b6446399d7f4af3cbc49441137ca11cbb44b1a..44bdb1bffc96454b0df1020ec3b01732f68d0d8e 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -921,6 +921,11 @@ class PreParserTraits {
inline void RewriteDestructuringAssignments() {}
+ inline PreParserExpression RewriteAssignExponentiation(
+ PreParserExpression left, PreParserExpression right, int pos) {
+ return left;
+ }
+
inline void QueueDestructuringAssignmentForRewriting(PreParserExpression) {}
void SetFunctionNameFromPropertyName(PreParserExpression,

Powered by Google App Engine
This is Rietveld 408576698