| 67 | } |
| 68 | |
| 69 | inline ValueRef FormatTransformation::unwrap_input(const ValueRef& input) const { |
| 70 | if (auto format_input = input.as_ref(m_value_type)) { |
| 71 | return format_input->value(); |
| 72 | } else { |
| 73 | return input; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | inline ValueRefList FormatTransformation::unwrap_inputs( |
| 78 | const Span<ValueRef>& inputs) const { |
no test coverage detected