| 1222 | } |
| 1223 | |
| 1224 | String __object_hash_to_string(Dynamic &ioHash) |
| 1225 | { |
| 1226 | DynamicHashBase *hash = static_cast<DynamicHashBase *>(ioHash.GetPtr()); |
| 1227 | if (hash) |
| 1228 | return hash->toString(); |
| 1229 | #if (HXCPP_API_LEVEL >= 430) |
| 1230 | return HX_CSTRING("[]"); |
| 1231 | #else |
| 1232 | return HX_CSTRING("{}"); |
| 1233 | #endif |
| 1234 | } |
| 1235 | |
| 1236 | void __object_hash_clear(Dynamic &ioHash) |
| 1237 | { |