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

Method object_node

src/core/json.cpp:580–581  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

578 struct object_node : json_node {
579 std::vector<std::shared_ptr<ast_node_base>> objects;
580 object_node(std::vector<std::shared_ptr<ast_node_base>>&& objects_) : json_node(JSON_NODE_TYPE::OBJECT),
581 objects(std::forward<std::vector<std::shared_ptr<ast_node_base>>>(objects_)) {}
582 object_node(std::nullptr_t) : json_node(JSON_NODE_TYPE::OBJECT), objects() {}
583 };
584 struct array_node : json_node {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected