(target, thisArg, argumentsList)
| 26698 | return createMethodCall(target, "bind", __spreadArray([thisArg], argumentsList, true)); |
| 26699 | } |
| 26700 | function createFunctionCallCall(target, thisArg, argumentsList) { |
| 26701 | return createMethodCall(target, "call", __spreadArray([thisArg], argumentsList, true)); |
| 26702 | } |
| 26703 | function createFunctionApplyCall(target, thisArg, argumentsExpression) { |
| 26704 | return createMethodCall(target, "apply", [thisArg, argumentsExpression]); |
| 26705 | } |
nothing calls this directly
no test coverage detected