(target, thisArg, argumentsExpression)
| 26701 | return createMethodCall(target, "call", __spreadArray([thisArg], argumentsList, true)); |
| 26702 | } |
| 26703 | function createFunctionApplyCall(target, thisArg, argumentsExpression) { |
| 26704 | return createMethodCall(target, "apply", [thisArg, argumentsExpression]); |
| 26705 | } |
| 26706 | function createGlobalMethodCall(globalObjectName, methodName, argumentsList) { |
| 26707 | return createMethodCall(createIdentifier(globalObjectName), methodName, argumentsList); |
| 26708 | } |
nothing calls this directly
no test coverage detected