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

Method array_node

core/json.cpp:675–675  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected