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

Function createGlobalMethodCall

test/fixtures/snapshot/typescript.js:26706–26708  ·  view source on GitHub ↗
(globalObjectName, methodName, argumentsList)

Source from the content-addressed store, hash-verified

26704 return createMethodCall(target, "apply", [thisArg, argumentsExpression]);
26705 }
26706 function createGlobalMethodCall(globalObjectName, methodName, argumentsList) {
26707 return createMethodCall(createIdentifier(globalObjectName), methodName, argumentsList);
26708 }
26709 function createArraySliceCall(array, start) {
26710 return createMethodCall(array, "slice", start === undefined ? [] : [asExpression(start)]);
26711 }

Callers 3

createReflectGetCallFunction · 0.85
createReflectSetCallFunction · 0.85

Calls 2

createMethodCallFunction · 0.85
createIdentifierFunction · 0.85

Tested by

no test coverage detected