| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |