| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index b6e8dc5bc8faa3bf21d1f80fb5e920a29ec0f31f..61361f82f22f11ae58c564ee8f4ebe2f541443fa 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1520,7 +1520,6 @@ bool Genesis::CompileScriptCached(Isolate* isolate,
|
| top_context,
|
| extension,
|
| NULL,
|
| - Handle<String>::null(),
|
| use_runtime_context ? NATIVES_CODE : NOT_NATIVES_CODE);
|
| if (function_info.is_null()) return false;
|
| if (cache != NULL) cache->Add(name, function_info);
|
| @@ -1755,9 +1754,6 @@ bool Genesis::InstallNatives() {
|
| STATIC_ASCII_VECTOR("column_offset")));
|
| Handle<Foreign> script_column_offset(
|
| factory()->NewForeign(&Accessors::ScriptColumnOffset));
|
| - Handle<String> data_string(factory()->InternalizeOneByteString(
|
| - STATIC_ASCII_VECTOR("data")));
|
| - Handle<Foreign> script_data(factory()->NewForeign(&Accessors::ScriptData));
|
| Handle<String> type_string(factory()->InternalizeOneByteString(
|
| STATIC_ASCII_VECTOR("type")));
|
| Handle<Foreign> script_type(factory()->NewForeign(&Accessors::ScriptType));
|
| @@ -1822,11 +1818,6 @@ bool Genesis::InstallNatives() {
|
| }
|
|
|
| {
|
| - CallbacksDescriptor d(*data_string, *script_data, attribs);
|
| - script_map->AppendDescriptor(&d, witness);
|
| - }
|
| -
|
| - {
|
| CallbacksDescriptor d(*type_string, *script_type, attribs);
|
| script_map->AppendDescriptor(&d, witness);
|
| }
|
|
|