| 37 | |
| 38 | |
| 39 | static hx::Object * SLJIT_CALL arraySplice(ArrayAnyImpl *inObj, hx::Object *a0, hx::Object *a1) |
| 40 | { |
| 41 | return inObj->splice( Dynamic(a0), Dynamic(a1) ).mPtr; |
| 42 | } |
| 43 | static hx::Object * SLJIT_CALL arraySlice(ArrayAnyImpl *inObj, hx::Object *a0, hx::Object *a1) |
| 44 | { |
| 45 | return inObj->slice( Dynamic(a0), Dynamic(a1) ).mPtr; |