| Index: src/scopes.h
|
| diff --git a/src/scopes.h b/src/scopes.h
|
| index a382234748b4697895524abd1e752c1e7d40159f..c313a400d2683335e7643130408bd30bbe8d1173 100644
|
| --- a/src/scopes.h
|
| +++ b/src/scopes.h
|
| @@ -474,7 +474,6 @@ class Scope: public ZoneObject {
|
| // Computed via PropagateScopeInfo.
|
| bool outer_scope_calls_sloppy_eval_;
|
| bool inner_scope_calls_eval_;
|
| - bool inner_scope_contains_with_;
|
| bool force_eager_compilation_;
|
| bool force_context_allocation_;
|
|
|
| @@ -552,7 +551,7 @@ class Scope: public ZoneObject {
|
| // Lookup a variable reference given by name recursively starting with this
|
| // scope. If the code is executed because of a call to 'eval', the context
|
| // parameter should be set to the calling context of 'eval'.
|
| - Variable* LookupRecursive(VariableProxy* proxy,
|
| + Variable* LookupRecursive(const AstRawString* name,
|
| BindingKind* binding_kind,
|
| AstNodeFactory<AstNullVisitor>* factory);
|
| MUST_USE_RESULT
|
| @@ -564,7 +563,7 @@ class Scope: public ZoneObject {
|
| AstNodeFactory<AstNullVisitor>* factory);
|
|
|
| // Scope analysis.
|
| - void PropagateScopeInfo(bool outer_scope_calls_sloppy_eval);
|
| + bool PropagateScopeInfo(bool outer_scope_calls_sloppy_eval);
|
| bool HasTrivialContext() const;
|
|
|
| // Predicates.
|
|
|