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

Unified Diff: src/prettyprinter.cc

Issue 1315503002: Revert of Parse arrow functions at proper precedence level (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « src/preparser.h ('k') | src/typing.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/prettyprinter.cc
diff --git a/src/prettyprinter.cc b/src/prettyprinter.cc
index 89af59377a3ce6bfb931dee7e300b1d9bfb63b94..e71489fa7f2c401111468f7de94d55bf24075a4a 100644
--- a/src/prettyprinter.cc
+++ b/src/prettyprinter.cc
@@ -357,11 +357,6 @@
Print("(...");
Find(node->expression(), true);
Print(")");
-}
-
-
-void CallPrinter::VisitEmptyParentheses(EmptyParentheses* node) {
- UNREACHABLE();
}
@@ -847,11 +842,6 @@
Print("(...");
Visit(node->expression());
Print(")");
-}
-
-
-void PrettyPrinter::VisitEmptyParentheses(EmptyParentheses* node) {
- Print("<empty-parentheses>");
}
@@ -1575,11 +1565,6 @@
}
-void AstPrinter::VisitEmptyParentheses(EmptyParentheses* node) {
- IndentedScope indent(this, "()");
-}
-
-
void AstPrinter::VisitThisFunction(ThisFunction* node) {
IndentedScope indent(this, "THIS-FUNCTION");
}
« no previous file with comments | « src/preparser.h ('k') | src/typing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698