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

Function createArraySliceCall

test/fixtures/snapshot/typescript.js:26709–26711  ·  view source on GitHub ↗
(array, start)

Source from the content-addressed store, hash-verified

26707 return createMethodCall(createIdentifier(globalObjectName), methodName, argumentsList);
26708 }
26709 function createArraySliceCall(array, start) {
26710 return createMethodCall(array, "slice", start === undefined ? [] : [asExpression(start)]);
26711 }
26712 function createArrayConcatCall(array, argumentsList) {
26713 return createMethodCall(array, "concat", argumentsList);
26714 }

Callers

nothing calls this directly

Calls 2

createMethodCallFunction · 0.85
asExpressionFunction · 0.85

Tested by

no test coverage detected