| 188 | } |
| 189 | } |
| 190 | inline void EnsureStringStorage() |
| 191 | { |
| 192 | switch(store) |
| 193 | { |
| 194 | case hx::arrayNull: |
| 195 | case hx::arrayObject: |
| 196 | case hx::arrayFixed: |
| 197 | case hx::arrayString: |
| 198 | return; |
| 199 | case hx::arrayEmpty: |
| 200 | MakeStringArray(); |
| 201 | break; |
| 202 | case hx::arrayInt: |
| 203 | case hx::arrayInt64: |
| 204 | case hx::arrayFloat: |
| 205 | case hx::arrayBool: |
| 206 | MakeObjectArray(); |
| 207 | break; |
| 208 | } |
| 209 | } |
| 210 | inline void EnsureFloatStorage() |
| 211 | { |
| 212 | switch(store) |
no outgoing calls
no test coverage detected