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

Unified Diff: src/typing.cc

Issue 1286383005: Parse arrow functions at proper precedence level (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Fix nits 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/prettyprinter.cc ('k') | test/message/arrow-missing.out » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/typing.cc
diff --git a/src/typing.cc b/src/typing.cc
index 204ace6c9688e0bff9089ad16c462d95018c3393..e1991f25c549f0fb23d5a1ef7e10f0209ddbdf25 100644
--- a/src/typing.cc
+++ b/src/typing.cc
@@ -753,6 +753,11 @@ void AstTyper::VisitCompareOperation(CompareOperation* expr) {
void AstTyper::VisitSpread(Spread* expr) { RECURSE(Visit(expr->expression())); }
+void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) {
+ UNREACHABLE();
+}
+
+
void AstTyper::VisitThisFunction(ThisFunction* expr) {
}
« no previous file with comments | « src/prettyprinter.cc ('k') | test/message/arrow-missing.out » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698