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

Function createFunctionCallCall

test/fixtures/snapshot/typescript.js:26700–26702  ·  view source on GitHub ↗
(target, thisArg, argumentsList)

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls 1

createMethodCallFunction · 0.85

Tested by

no test coverage detected