| 89 | class 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; |
nothing calls this directly
no outgoing calls
no test coverage detected