| 32 | } |
| 33 | |
| 34 | auto Array::add_object(std::unique_ptr<Object> object) -> void |
| 35 | { |
| 36 | m_members.emplace_back(std::move(object)); |
| 37 | } |
| 38 | |
| 39 | auto Array::serialize(ShouldFormat should_format, int32_t* indent_level) -> StringType |
| 40 | { |
no outgoing calls
no test coverage detected