| Index: src/factory.h
|
| diff --git a/src/factory.h b/src/factory.h
|
| index 7362a3857229301fdb21a27e827cb14190c391bd..db12148df2bca2a0d4cf7105d6d21c9c910a4872 100644
|
| --- a/src/factory.h
|
| +++ b/src/factory.h
|
| @@ -578,6 +578,15 @@ class V8_EXPORT_PRIVATE Factory final {
|
|
|
| Handle<JSFunction> NewFunctionFromSharedFunctionInfo(
|
| Handle<Map> initial_map, Handle<SharedFunctionInfo> function_info,
|
| + Handle<Object> context_or_undefined, Handle<LiteralsArray> literals,
|
| + PretenureFlag pretenure = TENURED);
|
| +
|
| + Handle<JSFunction> NewFunctionFromSharedFunctionInfo(
|
| + Handle<SharedFunctionInfo> function_info, Handle<Context> context,
|
| + Handle<LiteralsArray> literals, PretenureFlag pretenure = TENURED);
|
| +
|
| + Handle<JSFunction> NewFunctionFromSharedFunctionInfo(
|
| + Handle<Map> initial_map, Handle<SharedFunctionInfo> function_info,
|
| Handle<Object> context_or_undefined, PretenureFlag pretenure = TENURED);
|
|
|
| Handle<JSFunction> NewFunctionFromSharedFunctionInfo(
|
|
|