| 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/parsing/parameter-initializer-rewriter.h" | 5 #include "src/parsing/parameter-initializer-rewriter.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "src/ast/ast.h" | 11 #include "src/ast/ast-traversal-visitor.h" |
| 12 #include "src/ast/ast-expression-visitor.h" | |
| 13 #include "src/ast/scopes.h" | |
| 14 | 12 |
| 15 namespace v8 { | 13 namespace v8 { |
| 16 namespace internal { | 14 namespace internal { |
| 17 | 15 |
| 18 namespace { | 16 namespace { |
| 19 | 17 |
| 20 | 18 |
| 21 class Rewriter final : public AstExpressionVisitor { | 19 class Rewriter final : public AstTraversalVisitor<Rewriter> { |
| 22 public: | 20 public: |
| 23 Rewriter(uintptr_t stack_limit, Expression* initializer, Scope* old_scope, | 21 Rewriter(uintptr_t stack_limit, Expression* initializer, Scope* old_scope, |
| 24 Scope* new_scope) | 22 Scope* new_scope) |
| 25 : AstExpressionVisitor(stack_limit, initializer), | 23 : AstTraversalVisitor(stack_limit, initializer), |
| 26 old_scope_(old_scope), | 24 old_scope_(old_scope), |
| 27 new_scope_(new_scope), | 25 new_scope_(new_scope), |
| 28 old_scope_closure_(old_scope->ClosureScope()), | 26 old_scope_closure_(old_scope->ClosureScope()), |
| 29 new_scope_closure_(new_scope->ClosureScope()) {} | 27 new_scope_closure_(new_scope->ClosureScope()) {} |
| 30 ~Rewriter(); | 28 ~Rewriter(); |
| 31 | 29 |
| 30 protected: |
| 31 void VisitFunctionLiteral(FunctionLiteral* expr); |
| 32 void VisitClassLiteral(ClassLiteral* expr); |
| 33 void VisitVariableProxy(VariableProxy* expr); |
| 34 |
| 35 void VisitBlock(Block* stmt); |
| 36 void VisitTryCatchStatement(TryCatchStatement* stmt); |
| 37 void VisitWithStatement(WithStatement* stmt); |
| 38 |
| 32 private: | 39 private: |
| 33 void VisitExpression(Expression* expr) override {} | |
| 34 | |
| 35 void VisitFunctionLiteral(FunctionLiteral* expr) override; | |
| 36 void VisitClassLiteral(ClassLiteral* expr) override; | |
| 37 void VisitVariableProxy(VariableProxy* expr) override; | |
| 38 | |
| 39 void VisitBlock(Block* stmt) override; | |
| 40 void VisitTryCatchStatement(TryCatchStatement* stmt) override; | |
| 41 void VisitWithStatement(WithStatement* stmt) override; | |
| 42 | |
| 43 Scope* old_scope_; | 40 Scope* old_scope_; |
| 44 Scope* new_scope_; | 41 Scope* new_scope_; |
| 45 Scope* old_scope_closure_; | 42 Scope* old_scope_closure_; |
| 46 Scope* new_scope_closure_; | 43 Scope* new_scope_closure_; |
| 47 std::vector<std::pair<Variable*, int>> temps_; | 44 std::vector<std::pair<Variable*, int>> temps_; |
| 45 |
| 46 DEFINE_AST_VISITOR_DISPATCH(); |
| 48 }; | 47 }; |
| 49 | 48 |
| 50 struct LessThanSecond { | 49 struct LessThanSecond { |
| 51 bool operator()(const std::pair<Variable*, int>& left, | 50 bool operator()(const std::pair<Variable*, int>& left, |
| 52 const std::pair<Variable*, int>& right) { | 51 const std::pair<Variable*, int>& right) { |
| 53 return left.second < right.second; | 52 return left.second < right.second; |
| 54 } | 53 } |
| 55 }; | 54 }; |
| 56 | 55 |
| 57 Rewriter::~Rewriter() { | 56 Rewriter::~Rewriter() { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 void RewriteParameterInitializerScope(uintptr_t stack_limit, | 133 void RewriteParameterInitializerScope(uintptr_t stack_limit, |
| 135 Expression* initializer, Scope* old_scope, | 134 Expression* initializer, Scope* old_scope, |
| 136 Scope* new_scope) { | 135 Scope* new_scope) { |
| 137 Rewriter rewriter(stack_limit, initializer, old_scope, new_scope); | 136 Rewriter rewriter(stack_limit, initializer, old_scope, new_scope); |
| 138 rewriter.Run(); | 137 rewriter.Run(); |
| 139 } | 138 } |
| 140 | 139 |
| 141 | 140 |
| 142 } // namespace internal | 141 } // namespace internal |
| 143 } // namespace v8 | 142 } // namespace v8 |
| OLD | NEW |