MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / SetNode

Method SetNode

src/include/minja/minja.hpp:1133–1134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1131 std::shared_ptr<Expression> value;
1132public:
1133 SetNode(const Location & loc, const std::string & ns, const std::vector<std::string> & vns, std::shared_ptr<Expression> && v)
1134 : TemplateNode(loc), ns(ns), var_names(vns), value(std::move(v)) {}
1135 void do_render(std::ostringstream &, const std::shared_ptr<Context> & context) const override {
1136 if (!value) throw std::runtime_error("SetNode.value is null");
1137 if (!ns.empty()) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected