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/ast.h" | 5 #include "src/ast/ast.h" |
6 #include "src/messages.h" | 6 #include "src/messages.h" |
7 #include "src/parsing/parameter-initializer-rewriter.h" | 7 #include "src/parsing/parameter-initializer-rewriter.h" |
8 #include "src/parsing/parser.h" | 8 #include "src/parsing/parser.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 // surrounding 'with' statements). | 145 // surrounding 'with' statements). |
146 // For let/const declarations in harmony mode, we can also immediately | 146 // For let/const declarations in harmony mode, we can also immediately |
147 // pre-resolve the proxy because it resides in the same scope as the | 147 // pre-resolve the proxy because it resides in the same scope as the |
148 // declaration. | 148 // declaration. |
149 const AstRawString* name = pattern->raw_name(); | 149 const AstRawString* name = pattern->raw_name(); |
150 VariableProxy* proxy = descriptor_->scope->NewUnresolved( | 150 VariableProxy* proxy = descriptor_->scope->NewUnresolved( |
151 factory(), name, parser_->scanner()->location().beg_pos, | 151 factory(), name, parser_->scanner()->location().beg_pos, |
152 parser_->scanner()->location().end_pos); | 152 parser_->scanner()->location().end_pos); |
153 Declaration* declaration = factory()->NewVariableDeclaration( | 153 Declaration* declaration = factory()->NewVariableDeclaration( |
154 proxy, descriptor_->scope, descriptor_->declaration_pos); | 154 proxy, descriptor_->scope, descriptor_->declaration_pos); |
155 Variable* var = parser_->Declare(declaration, descriptor_->declaration_kind, | 155 Scope* scope = descriptor_->hoist_scope; |
156 descriptor_->mode, | 156 if (scope == nullptr) { |
157 DefaultInitializationFlag(descriptor_->mode), | 157 scope = parser_->scope(); |
158 ok_, descriptor_->hoist_scope); | 158 } |
| 159 Variable* var = scope->DeclareVariableOrParameter( |
| 160 declaration, descriptor_->declaration_kind, descriptor_->mode, |
| 161 DefaultInitializationFlag(descriptor_->mode), |
| 162 parser_->allow_harmony_restrictive_generators(), |
| 163 &parser_->pending_error_handler_, parser_->use_counts_, ok_); |
159 if (!*ok_) return; | 164 if (!*ok_) return; |
160 DCHECK_NOT_NULL(var); | 165 DCHECK_NOT_NULL(var); |
161 DCHECK(proxy->is_resolved()); | 166 DCHECK(proxy->is_resolved()); |
162 DCHECK(initializer_position_ != kNoSourcePosition); | 167 DCHECK(initializer_position_ != kNoSourcePosition); |
163 var->set_initializer_position(initializer_position_); | 168 var->set_initializer_position(initializer_position_); |
164 | 169 |
165 // TODO(adamk): This should probably be checking hoist_scope. | 170 // TODO(adamk): This should probably be checking hoist_scope. |
166 // Move it to Parser::Declare() to make it easier to test | 171 // Move it to Parser::Declare() to make it easier to test |
167 // the right scope. | 172 // the right scope. |
168 Scope* declaration_scope = IsLexicalVariableMode(descriptor_->mode) | 173 Scope* declaration_scope = IsLexicalVariableMode(descriptor_->mode) |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 NOT_A_PATTERN(TryFinallyStatement) | 707 NOT_A_PATTERN(TryFinallyStatement) |
703 NOT_A_PATTERN(UnaryOperation) | 708 NOT_A_PATTERN(UnaryOperation) |
704 NOT_A_PATTERN(VariableDeclaration) | 709 NOT_A_PATTERN(VariableDeclaration) |
705 NOT_A_PATTERN(WhileStatement) | 710 NOT_A_PATTERN(WhileStatement) |
706 NOT_A_PATTERN(WithStatement) | 711 NOT_A_PATTERN(WithStatement) |
707 NOT_A_PATTERN(Yield) | 712 NOT_A_PATTERN(Yield) |
708 | 713 |
709 #undef NOT_A_PATTERN | 714 #undef NOT_A_PATTERN |
710 } // namespace internal | 715 } // namespace internal |
711 } // namespace v8 | 716 } // namespace v8 |
OLD | NEW |