| Index: src/compiler.h
|
| diff --git a/src/compiler.h b/src/compiler.h
|
| index f7ff09c57d74e7678c4873e347d5baa17b77ba7d..3bf4db5780a31d041782b3f0aaf30d046ee5151b 100644
|
| --- a/src/compiler.h
|
| +++ b/src/compiler.h
|
| @@ -175,8 +175,10 @@ class CompilationInfo {
|
| ASSERT(function_ == NULL);
|
| function_ = literal;
|
| }
|
| - // When the scope is applied, we may have deferred work to do on the function.
|
| - void PrepareForCompilation(Scope* scope);
|
| + void SetScope(Scope* scope) {
|
| + ASSERT(scope_ == NULL);
|
| + scope_ = scope;
|
| + }
|
| void SetGlobalScope(Scope* global_scope) {
|
| ASSERT(global_scope_ == NULL);
|
| global_scope_ = global_scope;
|
| @@ -227,7 +229,6 @@ class CompilationInfo {
|
| SetMode(OPTIMIZE);
|
| osr_ast_id_ = osr_ast_id;
|
| unoptimized_code_ = unoptimized;
|
| - optimization_id_ = isolate()->NextOptimizationId();
|
| }
|
| void DisableOptimization();
|
|
|
| @@ -316,8 +317,6 @@ class CompilationInfo {
|
| return osr_ast_id_ == osr_ast_id && function.is_identical_to(closure_);
|
| }
|
|
|
| - int optimization_id() const { return optimization_id_; }
|
| -
|
| protected:
|
| CompilationInfo(Handle<Script> script,
|
| Zone* zone);
|
| @@ -453,8 +452,6 @@ class CompilationInfo {
|
|
|
| Handle<Foreign> object_wrapper_;
|
|
|
| - int optimization_id_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(CompilationInfo);
|
| };
|
|
|
|
|