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

Unified Diff: src/ast/scopes.cc

Issue 2222503002: Revert of Remove redundant ParseInfo::scope_. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/scopes.cc
diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc
index 5211e082e0aa987eebea4d9985444a9bc22e4d32..f272931b9258a01afe4573718db2861c322fc828 100644
--- a/src/ast/scopes.cc
+++ b/src/ast/scopes.cc
@@ -368,6 +368,7 @@
bool Scope::Analyze(ParseInfo* info) {
DCHECK(info->literal() != NULL);
+ DCHECK(info->scope() == NULL);
DeclarationScope* scope = info->literal()->scope();
DeclarationScope* top = scope;
@@ -395,6 +396,7 @@
scope->CheckZones();
#endif
+ info->set_scope(scope);
return true;
}
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698