| 117 | : DirectExpressionStep(expr_id), name_(name) {} |
| 118 | |
| 119 | absl::Status Evaluate(ExecutionFrameBase& frame, Value& result, |
| 120 | AttributeTrail& attribute) const override { |
| 121 | return LookupIdent(name_, frame, result, attribute); |
| 122 | } |
| 123 | |
| 124 | private: |
| 125 | std::string name_; |
nothing calls this directly
no test coverage detected