| 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/ast-literal-reindexer.h" | 5 #include "src/ast-literal-reindexer.h" |
| 6 | 6 |
| 7 #include "src/ast.h" | 7 #include "src/ast.h" |
| 8 #include "src/scopes.h" | 8 #include "src/scopes.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 | 309 |
| 310 | 310 |
| 311 void AstLiteralReindexer::VisitFunctionLiteral(FunctionLiteral* node) { | 311 void AstLiteralReindexer::VisitFunctionLiteral(FunctionLiteral* node) { |
| 312 // We don't recurse into the declarations or body of the function literal: | 312 // We don't recurse into the declarations or body of the function literal: |
| 313 } | 313 } |
| 314 | 314 |
| 315 | 315 |
| 316 void AstLiteralReindexer::Reindex(Expression* pattern) { | 316 void AstLiteralReindexer::Reindex(Expression* pattern) { |
| 317 pattern->Accept(this); | 317 pattern->Accept(this); |
| 318 } | 318 } |
| 319 } | 319 } // namespace internal |
| 320 } // namespace v8::internal | 320 } // namespace v8 |
| OLD | NEW |