| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 17502bce90e8a7c512affbf8318bcb19f1e11136..5aea79984777b30081c3c3bc9a705a42a896ae95 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -2034,7 +2034,6 @@
|
| }
|
|
|
| i::Handle<i::Object> name_obj;
|
| - int eval_position = 0;
|
| int line_offset = 0;
|
| int column_offset = 0;
|
| if (!source->resource_name.IsEmpty()) {
|
| @@ -2047,12 +2046,11 @@
|
| column_offset = static_cast<int>(source->resource_column_offset->Value());
|
| }
|
| i::Handle<i::JSFunction> fun;
|
| - has_pending_exception =
|
| - !i::Compiler::GetFunctionFromEval(
|
| - source_string, outer_info, context, i::SLOPPY,
|
| - i::ONLY_SINGLE_FUNCTION_LITERAL, eval_position, line_offset,
|
| - column_offset - scope_position, name_obj, source->resource_options)
|
| - .ToHandle(&fun);
|
| + has_pending_exception = !i::Compiler::GetFunctionFromEval(
|
| + source_string, outer_info, context, i::SLOPPY,
|
| + i::ONLY_SINGLE_FUNCTION_LITERAL, line_offset,
|
| + column_offset - scope_position, name_obj,
|
| + source->resource_options).ToHandle(&fun);
|
| if (has_pending_exception) {
|
| isolate->ReportPendingMessages();
|
| }
|
|
|