| 53 | return a->generate(ctx) + b->generate(ctx); |
| 54 | } |
| 55 | std::string str() const override { |
| 56 | return std::string{"add(" + a->str() + ", " + b->str() + ")"}; |
| 57 | } |
| 58 | |
| 59 | private: |
| 60 | std::shared_ptr<FieldGenerator> a, b; |
no outgoing calls
no test coverage detected