| 888 | } |
| 889 | |
| 890 | String __string_hash_to_string(Dynamic &ioHash) |
| 891 | { |
| 892 | StringHashBase *hash = static_cast<StringHashBase *>(ioHash.GetPtr()); |
| 893 | if (hash) |
| 894 | return hash->toString(); |
| 895 | #if (HXCPP_API_LEVEL >= 430) |
| 896 | return HX_CSTRING("[]"); |
| 897 | #else |
| 898 | return HX_CSTRING("{}"); |
| 899 | #endif |
| 900 | } |
| 901 | |
| 902 | String __string_hash_to_string_raw(Dynamic &ioHash) |
| 903 | { |