| Index: src/ast/scopes.cc
|
| diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc
|
| index c3cab48d6e3ad9e6ecb4b6deb17187436aa7b6b7..ad9330538ab9260b8e586d65d24976e88ec4e749 100644
|
| --- a/src/ast/scopes.cc
|
| +++ b/src/ast/scopes.cc
|
| @@ -1247,7 +1247,7 @@ Scope* Scope::GetOuterScopeWithContext() {
|
|
|
| Handle<StringSet> DeclarationScope::CollectNonLocals(
|
| ParseInfo* info, Handle<StringSet> non_locals) {
|
| - VariableProxy* free_variables = FetchFreeVariables(this, true, info);
|
| + VariableProxy* free_variables = FetchFreeVariables(this, true);
|
| for (VariableProxy* proxy = free_variables; proxy != nullptr;
|
| proxy = proxy->next_unresolved()) {
|
| non_locals = StringSet::Add(non_locals, proxy->name());
|
| @@ -1734,7 +1734,7 @@ void Scope::ResolveVariablesRecursively(ParseInfo* info) {
|
| }
|
|
|
| VariableProxy* Scope::FetchFreeVariables(DeclarationScope* max_outer_scope,
|
| - bool try_to_resolve, ParseInfo* info,
|
| + bool try_to_resolve,
|
| VariableProxy* stack) {
|
| for (VariableProxy *proxy = unresolved_, *next = nullptr; proxy != nullptr;
|
| proxy = next) {
|
| @@ -1747,8 +1747,6 @@ VariableProxy* Scope::FetchFreeVariables(DeclarationScope* max_outer_scope,
|
| if (var == nullptr) {
|
| proxy->set_next_unresolved(stack);
|
| stack = proxy;
|
| - } else if (info != nullptr) {
|
| - ResolveTo(info, proxy, var);
|
| } else {
|
| var->set_is_used();
|
| }
|
| @@ -1758,8 +1756,7 @@ VariableProxy* Scope::FetchFreeVariables(DeclarationScope* max_outer_scope,
|
| unresolved_ = nullptr;
|
|
|
| for (Scope* scope = inner_scope_; scope != nullptr; scope = scope->sibling_) {
|
| - stack =
|
| - scope->FetchFreeVariables(max_outer_scope, try_to_resolve, info, stack);
|
| + stack = scope->FetchFreeVariables(max_outer_scope, try_to_resolve, stack);
|
| }
|
|
|
| return stack;
|
|
|