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

Side by Side Diff: src/ast-expression-visitor.cc

Issue 1315823002: Parse arrow functions at proper precedence level (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Fix nits Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « src/ast.h ('k') | src/ast-literal-reindexer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/ast-expression-visitor.h" 7 #include "src/ast-expression-visitor.h"
8 8
9 #include "src/ast.h" 9 #include "src/ast.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 } 319 }
320 } 320 }
321 321
322 322
323 void AstExpressionVisitor::VisitClassLiteral(ClassLiteral* expr) {} 323 void AstExpressionVisitor::VisitClassLiteral(ClassLiteral* expr) {}
324 324
325 325
326 void AstExpressionVisitor::VisitSpread(Spread* expr) {} 326 void AstExpressionVisitor::VisitSpread(Spread* expr) {}
327 327
328 328
329 void AstExpressionVisitor::VisitEmptyParentheses(EmptyParentheses* expr) {}
330
331
329 void AstExpressionVisitor::VisitSuperPropertyReference( 332 void AstExpressionVisitor::VisitSuperPropertyReference(
330 SuperPropertyReference* expr) {} 333 SuperPropertyReference* expr) {}
331 334
332 335
333 void AstExpressionVisitor::VisitSuperCallReference(SuperCallReference* expr) {} 336 void AstExpressionVisitor::VisitSuperCallReference(SuperCallReference* expr) {}
334 } 337 }
335 338
336 339
337 } // namespace v8::internal 340 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/ast-literal-reindexer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698