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

Side by Side Diff: src/parsing/preparser.cc

Issue 2679263002: Revert of [parsing] Fix maybe-assigned for loop variables. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « src/parsing/pattern-rewriter.cc ('k') | test/cctest/parsing/test-preparser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 <cmath> 5 #include <cmath>
6 6
7 #include "src/allocation.h" 7 #include "src/allocation.h"
8 #include "src/base/logging.h" 8 #include "src/base/logging.h"
9 #include "src/conversions-inl.h" 9 #include "src/conversions-inl.h"
10 #include "src/conversions.h" 10 #include "src/conversions.h"
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 void PreParser::DeclareAndInitializeVariables( 303 void PreParser::DeclareAndInitializeVariables(
304 PreParserStatement block, 304 PreParserStatement block,
305 const DeclarationDescriptor* declaration_descriptor, 305 const DeclarationDescriptor* declaration_descriptor,
306 const DeclarationParsingResult::Declaration* declaration, 306 const DeclarationParsingResult::Declaration* declaration,
307 ZoneList<const AstRawString*>* names, bool* ok) { 307 ZoneList<const AstRawString*>* names, bool* ok) {
308 if (declaration->pattern.variables_ != nullptr) { 308 if (declaration->pattern.variables_ != nullptr) {
309 DCHECK(FLAG_lazy_inner_functions); 309 DCHECK(FLAG_lazy_inner_functions);
310 DCHECK(track_unresolved_variables_); 310 DCHECK(track_unresolved_variables_);
311 for (auto variable : *(declaration->pattern.variables_)) { 311 for (auto variable : *(declaration->pattern.variables_)) {
312 declaration_descriptor->scope->RemoveUnresolved(variable); 312 declaration_descriptor->scope->RemoveUnresolved(variable);
313 Variable* var = scope()->DeclareVariableName( 313 scope()->DeclareVariableName(variable->raw_name(),
314 variable->raw_name(), declaration_descriptor->mode); 314 declaration_descriptor->mode);
315 if (FLAG_preparser_scope_analysis) {
316 MarkLoopVariableAsAssigned(declaration_descriptor->scope, var);
317 // This is only necessary if there is an initializer, but we don't have
318 // that information here. Consequently, the preparser sometimes says
319 // maybe-assigned where the parser (correctly) says never-assigned.
320 }
321 if (names) { 315 if (names) {
322 names->Add(variable->raw_name(), zone()); 316 names->Add(variable->raw_name(), zone());
323 } 317 }
324 } 318 }
325 } 319 }
326 } 320 }
327 321
328 #undef CHECK_OK 322 #undef CHECK_OK
329 #undef CHECK_OK_CUSTOM 323 #undef CHECK_OK_CUSTOM
330 324
331 325
332 } // namespace internal 326 } // namespace internal
333 } // namespace v8 327 } // namespace v8
OLDNEW
« no previous file with comments | « src/parsing/pattern-rewriter.cc ('k') | test/cctest/parsing/test-preparser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698