| Index: src/parser.cc
|
| diff --git a/src/parser.cc b/src/parser.cc
|
| index f24f7107d8fd444235349dcc2601166dcc8ebbdc..03ce38081418f76c14aaedcc9f69f21b99e6c9ac 100644
|
| --- a/src/parser.cc
|
| +++ b/src/parser.cc
|
| @@ -64,7 +64,6 @@ ParseInfo::ParseInfo(Zone* zone, Handle<SharedFunctionInfo> shared)
|
| isolate_ = shared->GetIsolate();
|
|
|
| set_lazy();
|
| - set_this_has_uses();
|
| set_hash_seed(isolate_->heap()->HashSeed());
|
| set_stack_limit(isolate_->stack_guard()->real_climit());
|
| set_unicode_cache(isolate_->unicode_cache());
|
| @@ -82,7 +81,6 @@ ParseInfo::ParseInfo(Zone* zone, Handle<SharedFunctionInfo> shared)
|
| ParseInfo::ParseInfo(Zone* zone, Handle<Script> script) : ParseInfo(zone) {
|
| isolate_ = script->GetIsolate();
|
|
|
| - set_this_has_uses();
|
| set_hash_seed(isolate_->heap()->HashSeed());
|
| set_stack_limit(isolate_->stack_guard()->real_climit());
|
| set_unicode_cache(isolate_->unicode_cache());
|
|
|