MCPcopy Create free account
hub / github.com/alibaba/euler / TreeNode

Method TreeNode

euler/parser/tree.h:91–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89class TreeNode {
90 public:
91 TreeNode(std::string type,
92 std::string value) {
93 type_ = type;
94 value_ = value;
95 property_ = new Prop();
96 op_alias_ = "";
97 parent_ = nullptr;
98 }
99
100 explicit TreeNode(std::string type) {
101 type_ = type;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected