| Index: src/compiler.h
|
| diff --git a/src/compiler.h b/src/compiler.h
|
| index 03c6f8199fe105e0cec8480db71f79fd6cf4143a..1200359d15390b954a2a5b08458db25c5bbb8c2b 100644
|
| --- a/src/compiler.h
|
| +++ b/src/compiler.h
|
| @@ -89,15 +89,15 @@ class Compiler : public AllStatic {
|
| MUST_USE_RESULT static MaybeHandle<JSFunction> GetFunctionFromEval(
|
| Handle<String> source, Handle<SharedFunctionInfo> outer_info,
|
| Handle<Context> context, LanguageMode language_mode,
|
| - ParseRestriction restriction, int eval_scope_position, int eval_position,
|
| - int line_offset = 0, int column_offset = 0,
|
| - Handle<Object> script_name = Handle<Object>(),
|
| + ParseRestriction restriction, int parameters_end_pos,
|
| + int eval_scope_position, int eval_position, int line_offset = 0,
|
| + int column_offset = 0, Handle<Object> script_name = Handle<Object>(),
|
| ScriptOriginOptions options = ScriptOriginOptions());
|
|
|
| // Create a (bound) function for a String source within a context for eval.
|
| MUST_USE_RESULT static MaybeHandle<JSFunction> GetFunctionFromString(
|
| Handle<Context> context, Handle<String> source,
|
| - ParseRestriction restriction);
|
| + ParseRestriction restriction, int parameters_end_pos);
|
|
|
| // Create a shared function info object for a String source within a context.
|
| static Handle<SharedFunctionInfo> GetSharedFunctionInfoForScript(
|
|
|