| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 1e90469a92c0f413aaba24c3aff8af90b18adde4..8b34f022fc53d4f3d4858dfbbeb94835f291c66c 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -56,6 +56,7 @@ CompilationInfo::CompilationInfo(Handle<Script> script)
|
| flags_(0),
|
| function_(NULL),
|
| scope_(NULL),
|
| + global_scope_(NULL),
|
| script_(script),
|
| extension_(NULL),
|
| pre_parse_data_(NULL),
|
| @@ -69,6 +70,7 @@ CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info)
|
| flags_(IsLazy::encode(true)),
|
| function_(NULL),
|
| scope_(NULL),
|
| + global_scope_(NULL),
|
| shared_info_(shared_info),
|
| script_(Handle<Script>(Script::cast(shared_info->script()))),
|
| extension_(NULL),
|
| @@ -83,6 +85,7 @@ CompilationInfo::CompilationInfo(Handle<JSFunction> closure)
|
| flags_(IsLazy::encode(true)),
|
| function_(NULL),
|
| scope_(NULL),
|
| + global_scope_(NULL),
|
| closure_(closure),
|
| shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
|
| script_(Handle<Script>(Script::cast(shared_info_->script()))),
|
|
|