(array, start)
| 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 | } |
nothing calls this directly
no test coverage detected