Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 621f790f0ef34d893fea3b86db2794dbd9b2d138..3b896d7588edfbb2b709af035b3ff5d429c21a21 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -589,8 +589,11 @@ Handle<JSFunction> Genesis::CreateEmptyFunction(Isolate* isolate) { |
Handle<String> source = factory->NewStringFromStaticChars("() {}"); |
Handle<Script> script = factory->NewScript(source); |
script->set_type(Script::TYPE_NATIVE); |
+ Handle<FixedArray> infos = factory->NewFixedArrayWithSmis(2, 0); |
+ script->set_shared_function_infos(*infos); |
empty_function->shared()->set_start_position(0); |
empty_function->shared()->set_end_position(source->length()); |
+ empty_function->shared()->set_function_literal_id(1); |
empty_function->shared()->DontAdaptArguments(); |
SharedFunctionInfo::SetScript(handle(empty_function->shared()), script); |