| 12 | } |
| 13 | |
| 14 | auto Array::new_array() -> class Array& |
| 15 | { |
| 16 | return static_cast<Array&>(*m_members.emplace_back(std::make_unique<Array>())); |
| 17 | } |
| 18 | |
| 19 | auto Array::new_string(const StringType& value) -> void |
| 20 | { |
no outgoing calls
no test coverage detected