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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 descriptor_->mode != VAR, ok_, descriptor_->hoist_scope); | 156 descriptor_->mode != VAR, ok_, descriptor_->hoist_scope); |
157 if (!*ok_) return; | 157 if (!*ok_) return; |
158 DCHECK_NOT_NULL(var); | 158 DCHECK_NOT_NULL(var); |
159 DCHECK(!proxy->is_resolved() || proxy->var() == var); | 159 DCHECK(!proxy->is_resolved() || proxy->var() == var); |
160 var->set_initializer_position(initializer_position_); | 160 var->set_initializer_position(initializer_position_); |
161 | 161 |
162 DCHECK(initializer_position_ != kNoSourcePosition); | 162 DCHECK(initializer_position_ != kNoSourcePosition); |
163 | 163 |
164 Scope* declaration_scope = IsLexicalVariableMode(descriptor_->mode) | 164 Scope* declaration_scope = IsLexicalVariableMode(descriptor_->mode) |
165 ? descriptor_->scope | 165 ? descriptor_->scope |
166 : descriptor_->scope->GetDeclarationScope(); | 166 : descriptor_->scope->DeclarationScope(); |
167 if (declaration_scope->num_var() > kMaxNumFunctionLocals) { | 167 if (declaration_scope->num_var() > kMaxNumFunctionLocals) { |
168 parser_->ReportMessage(MessageTemplate::kTooManyVariables); | 168 parser_->ReportMessage(MessageTemplate::kTooManyVariables); |
169 *ok_ = false; | 169 *ok_ = false; |
170 return; | 170 return; |
171 } | 171 } |
172 if (names_) { | 172 if (names_) { |
173 names_->Add(name, zone()); | 173 names_->Add(name, zone()); |
174 } | 174 } |
175 | 175 |
176 // Initialize variables if needed. A | 176 // Initialize variables if needed. A |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 NOT_A_PATTERN(TryFinallyStatement) | 758 NOT_A_PATTERN(TryFinallyStatement) |
759 NOT_A_PATTERN(UnaryOperation) | 759 NOT_A_PATTERN(UnaryOperation) |
760 NOT_A_PATTERN(VariableDeclaration) | 760 NOT_A_PATTERN(VariableDeclaration) |
761 NOT_A_PATTERN(WhileStatement) | 761 NOT_A_PATTERN(WhileStatement) |
762 NOT_A_PATTERN(WithStatement) | 762 NOT_A_PATTERN(WithStatement) |
763 NOT_A_PATTERN(Yield) | 763 NOT_A_PATTERN(Yield) |
764 | 764 |
765 #undef NOT_A_PATTERN | 765 #undef NOT_A_PATTERN |
766 } // namespace internal | 766 } // namespace internal |
767 } // namespace v8 | 767 } // namespace v8 |
OLD | NEW |