| 99 | } |
| 100 | |
| 101 | inline void checkBase() const |
| 102 | { |
| 103 | #ifdef HXCPP_CHECK_POINTER |
| 104 | if (store==hx::arrayNull) |
| 105 | { |
| 106 | hx::NullReference("Array", true); |
| 107 | // The handler might have fixed up the null value |
| 108 | if (store==hx::arrayNull) hx::NullReference("Array", false); |
| 109 | } |
| 110 | #endif |
| 111 | } |
| 112 | |
| 113 | void EnsureStorage(const Dynamic &inValue) |
| 114 | { |
no test coverage detected