| Index: src/runtime/runtime-compiler.cc
|
| diff --git a/src/runtime/runtime-compiler.cc b/src/runtime/runtime-compiler.cc
|
| index 3f9457e560f6cfe5deb0044922a0d42265e9e21a..77c009790d3f99a6397f950df8dde305dfd3cb30 100644
|
| --- a/src/runtime/runtime-compiler.cc
|
| +++ b/src/runtime/runtime-compiler.cc
|
| @@ -442,9 +442,10 @@ static Object* CompileGlobalEval(Isolate* isolate, Handle<String> source,
|
| static const ParseRestriction restriction = NO_PARSE_RESTRICTION;
|
| Handle<JSFunction> compiled;
|
| ASSIGN_RETURN_ON_EXCEPTION_VALUE(
|
| - isolate, compiled, Compiler::GetFunctionFromEval(
|
| - source, outer_info, context, language_mode,
|
| - restriction, eval_scope_position, eval_position),
|
| + isolate, compiled,
|
| + Compiler::GetFunctionFromEval(source, outer_info, context, language_mode,
|
| + restriction, kNoSourcePosition,
|
| + eval_scope_position, eval_position),
|
| isolate->heap()->exception());
|
| return *compiled;
|
| }
|
|
|