| 17 | REGISTER_PRIMITIVE_TYPE(Array, Object, Array::GetPrototype()); |
| 18 | |
| 19 | Array::Array(const ArrayData& other) |
| 20 | : m_Data(other) |
| 21 | { } |
| 22 | |
| 23 | Array::Array(ArrayData&& other) |
| 24 | : m_Data(std::move(other)) |
nothing calls this directly
no outgoing calls
no test coverage detected