| 52 | } |
| 53 | |
| 54 | Value CallWithInitList(const CallbackInfo& info) { |
| 55 | EscapableHandleScope scope(info.Env()); |
| 56 | FunctionReference ref; |
| 57 | ref.Reset(info[0].As<Function>()); |
| 58 | |
| 59 | return scope.Escape(MaybeUnwrap(ref.Call({info[1], info[2], info[3]}))); |
| 60 | } |
| 61 | |
| 62 | Value CallWithRecvInitList(const CallbackInfo& info) { |
| 63 | EscapableHandleScope scope(info.Env()); |
nothing calls this directly
no test coverage detected