| 116 | virtual bool match(PatternList& left, std::vector<std::shared_ptr<LeafPattern>>& collected) const override; |
| 117 | |
| 118 | virtual bool hasValue() const override { return static_cast<bool>(fValue); } |
| 119 | |
| 120 | value const& getValue() const { return fValue; } |
| 121 | void setValue(value&& v) { fValue = std::move(v); } |
nothing calls this directly
no outgoing calls
no test coverage detected