| 673 | struct array_node : json_node { |
| 674 | vector<unique_ptr<ast_node_base>> values; |
| 675 | array_node(vector<unique_ptr<ast_node_base>>&& values_) : json_node(JSON_NODE_TYPE::ARRAY), values(std::move(values_)) {} |
| 676 | array_node(nullptr_t) : json_node(JSON_NODE_TYPE::ARRAY), values() {} |
| 677 | }; |
| 678 |
nothing calls this directly
no outgoing calls
no test coverage detected