| 1282 | } |
| 1283 | |
| 1284 | void VirtualArray_obj::EnsureBase() |
| 1285 | { |
| 1286 | if (!base) |
| 1287 | { |
| 1288 | base = new Array_obj<unsigned char>(0,0); |
| 1289 | store = arrayInt; |
| 1290 | HX_OBJ_WB_GET(this,base); |
| 1291 | } |
| 1292 | } |
| 1293 | |
| 1294 | VirtualArray VirtualArray_obj::splice(int inPos, int len) |
| 1295 | { |
nothing calls this directly
no outgoing calls
no test coverage detected