| Index: src/ast/scopes.cc
|
| diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc
|
| index 20a29d3788d1b3e46ec6b958c45c836c6bd2ab4c..22661ec2b0bd91e90efc2fc27a1083417dcba83f 100644
|
| --- a/src/ast/scopes.cc
|
| +++ b/src/ast/scopes.cc
|
| @@ -1119,9 +1119,7 @@ bool Scope::AllowsLazyParsingWithoutUnresolvedVariables() const {
|
| // inner scopes to find out how to allocate variables on the block scope. At
|
| // this point, declarations may not have yet been parsed.
|
| for (const Scope* s = this; s != nullptr; s = s->outer_scope_) {
|
| - if (s->is_block_scope()) return false;
|
| - // TODO(marja): Refactor parsing modes: also add s->is_function_scope()
|
| - // here.
|
| + if (s->is_block_scope() || s->is_function_scope()) return false;
|
| }
|
| return true;
|
| }
|
|
|