MCPcopy Create free account
hub / github.com/a2flo/floor / array_node

Method array_node

src/core/json.cpp:586–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

584 struct array_node : json_node {
585 std::vector<std::shared_ptr<ast_node_base>> values;
586 array_node(std::vector<std::shared_ptr<ast_node_base>>&& values_) : json_node(JSON_NODE_TYPE::ARRAY),
587 values(std::forward<std::vector<std::shared_ptr<ast_node_base>>>(values_)) {}
588 array_node(std::nullptr_t) : json_node(JSON_NODE_TYPE::ARRAY), values() {}
589 };
590

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected