| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index a31e6a71fbbff3b1d00de103af1eb534c0381d28..f547102a49ee11f420f0ff6bfe45f9642befaeed 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -1532,8 +1532,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,
|
| @@ -1668,8 +1667,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.
|
|
|