| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 1005582dbc74b01dbe7db9c45f5964a9d3852604..b71d86c30b5e1890d38df34099a68ebaba03576e 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -1547,8 +1547,7 @@ MaybeHandle<JSFunction> Compiler::GetFunctionFromEval(
|
| return result;
|
| }
|
|
|
| -
|
| -Handle<SharedFunctionInfo> Compiler::CompileScript(
|
| +Handle<SharedFunctionInfo> Compiler::GetSharedFunctionInfoForScript(
|
| Handle<String> source, Handle<Object> script_name, int line_offset,
|
| int column_offset, ScriptOriginOptions resource_options,
|
| Handle<Object> source_map_url, Handle<Context> context,
|
| @@ -1683,8 +1682,7 @@ Handle<SharedFunctionInfo> Compiler::CompileScript(
|
| return result;
|
| }
|
|
|
| -
|
| -Handle<SharedFunctionInfo> Compiler::CompileStreamedScript(
|
| +Handle<SharedFunctionInfo> Compiler::GetSharedFunctionInfoForStreamedScript(
|
| Handle<Script> script, ParseInfo* parse_info, int source_length) {
|
| Isolate* isolate = script->GetIsolate();
|
| // TODO(titzer): increment the counters in caller.
|
|
|