MCPcopy Index your code
hub / github.com/nodejs/node / createFunctionApplyCall

Function createFunctionApplyCall

test/fixtures/snapshot/typescript.js:26703–26705  ·  view source on GitHub ↗
(target, thisArg, argumentsExpression)

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls 1

createMethodCallFunction · 0.85

Tested by

no test coverage detected