| 250 | } |
| 251 | |
| 252 | inline void EnsureInt64Storage() |
| 253 | { |
| 254 | switch(store) |
| 255 | { |
| 256 | case hx::arrayNull: |
| 257 | case hx::arrayInt64: |
| 258 | case hx::arrayFloat: |
| 259 | case hx::arrayObject: |
| 260 | case hx::arrayFixed: |
| 261 | return; |
| 262 | case hx::arrayInt: |
| 263 | case hx::arrayEmpty: |
| 264 | MakeInt64Array(); |
| 265 | break; |
| 266 | case hx::arrayBool: |
| 267 | case hx::arrayString: |
| 268 | MakeObjectArray(); |
| 269 | break; |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | inline void EnsureObjectStorage() |
| 274 | { |
no outgoing calls
no test coverage detected