| 271 | } |
| 272 | |
| 273 | inline void EnsureObjectStorage() |
| 274 | { |
| 275 | switch(store) |
| 276 | { |
| 277 | case hx::arrayNull: |
| 278 | case hx::arrayObject: |
| 279 | case hx::arrayFixed: |
| 280 | return; |
| 281 | case hx::arrayEmpty: |
| 282 | case hx::arrayInt: |
| 283 | case hx::arrayInt64: |
| 284 | case hx::arrayFloat: |
| 285 | case hx::arrayBool: |
| 286 | case hx::arrayString: |
| 287 | MakeObjectArray(); |
| 288 | break; |
| 289 | } |
| 290 | } |
| 291 | inline void EnsureNullStorage() |
| 292 | { |
| 293 | switch(store) |
no outgoing calls
no test coverage detected