Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: src/parsing/pattern-rewriter.cc

Issue 2280033002: Move Parser::Declare to Scope. (Closed)
Patch Set: beautification Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/ast/scopes.cc ('K') | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/pattern-rewriter.cc
diff --git a/src/parsing/pattern-rewriter.cc b/src/parsing/pattern-rewriter.cc
index 247f3f57c6cce3148c1013f4c67dc8cdeb550357..6f278bf7d6e7edc45e648aec6ebea90ff6a57161 100644
--- a/src/parsing/pattern-rewriter.cc
+++ b/src/parsing/pattern-rewriter.cc
@@ -152,10 +152,15 @@ void Parser::PatternRewriter::VisitVariableProxy(VariableProxy* pattern) {
parser_->scanner()->location().end_pos);
Declaration* declaration = factory()->NewVariableDeclaration(
proxy, descriptor_->scope, descriptor_->declaration_pos);
- Variable* var = parser_->Declare(declaration, descriptor_->declaration_kind,
- descriptor_->mode,
- DefaultInitializationFlag(descriptor_->mode),
- ok_, descriptor_->hoist_scope);
+ Scope* scope = descriptor_->hoist_scope;
+ if (scope == nullptr) {
+ scope = parser_->scope();
+ }
+ Variable* var = scope->DeclareVariableOrParameter(
+ declaration, descriptor_->declaration_kind, descriptor_->mode,
+ DefaultInitializationFlag(descriptor_->mode),
+ parser_->allow_harmony_restrictive_generators(),
+ &parser_->pending_error_handler_, parser_->use_counts_, ok_);
if (!*ok_) return;
DCHECK_NOT_NULL(var);
DCHECK(proxy->is_resolved());
« src/ast/scopes.cc ('K') | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698