(array, argumentsList)
| 26710 | return createMethodCall(array, "slice", start === undefined ? [] : [asExpression(start)]); |
| 26711 | } |
| 26712 | function createArrayConcatCall(array, argumentsList) { |
| 26713 | return createMethodCall(array, "concat", argumentsList); |
| 26714 | } |
| 26715 | function createObjectDefinePropertyCall(target, propertyName, attributes) { |
| 26716 | return createGlobalMethodCall("Object", "defineProperty", [target, asExpression(propertyName), attributes]); |
| 26717 | } |
nothing calls this directly
no test coverage detected