Index: src/ast/scopes.h |
diff --git a/src/ast/scopes.h b/src/ast/scopes.h |
index a6e92cb43454b4173057cc8c08c19c35cd9c3fc7..26b0eccff05c6d26c292a3da94351253ccab82e4 100644 |
--- a/src/ast/scopes.h |
+++ b/src/ast/scopes.h |
@@ -342,8 +342,9 @@ class Scope: public ZoneObject { |
int StackLocalCount() const; |
int ContextLocalCount() const; |
- // Determine if we can parse a function literal in this scope lazily. |
- bool AllowsLazyParsing() const; |
+ // Determine if we can parse a function literal in this scope lazily without |
+ // caring about the unresolved variables within. |
+ bool AllowsLazyParsingWithoutUnresolvedVariables() const; |
// The number of contexts between this and scope; zero if this == scope. |
int ContextChainLength(Scope* scope) const; |