| 1024 | } |
| 1025 | |
| 1026 | Dynamic VirtualArray_obj::__GetItem(int inIndex) const |
| 1027 | { |
| 1028 | checkBase(); |
| 1029 | if (store==hx::arrayEmpty || inIndex<0 || inIndex>=get_length()) return |
| 1030 | null(); |
| 1031 | return base->__GetItem(inIndex); |
| 1032 | } |
| 1033 | |
| 1034 | Dynamic VirtualArray_obj::__SetItem(int inIndex,Dynamic inValue) |
| 1035 | { |
no test coverage detected