| 14 | REGISTER_PRIMITIVE_TYPE(Dictionary, Object, Dictionary::GetPrototype()); |
| 15 | |
| 16 | Dictionary::Dictionary(const DictionaryData& other) |
| 17 | { |
| 18 | for (const auto& kv : other) |
| 19 | m_Data.insert(kv); |
| 20 | } |
| 21 | |
| 22 | Dictionary::Dictionary(DictionaryData&& other) |
| 23 | { |