| 59 | } |
| 60 | |
| 61 | void FillingStep::describeActions(FormatSettings & settings) const |
| 62 | { |
| 63 | const String & prefix = settings.detail_prefix; |
| 64 | settings.out << prefix; |
| 65 | dumpSortDescription(sort_description, settings); |
| 66 | settings.out << '\n'; |
| 67 | if (interpolate_description) |
| 68 | { |
| 69 | auto expression = std::make_shared<ExpressionActions>(interpolate_description->actions.clone()); |
| 70 | if (!settings.compact) |
| 71 | expression->describeActions(settings.out, prefix); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void FillingStep::describeActions(JSONBuilder::JSONMap & map) const |
| 76 | { |
nothing calls this directly
no test coverage detected