| 8 | |
| 9 | |
| 10 | auto operator<<(std::ostream& out, wasm::Mutability mut) -> std::ostream& { |
| 11 | switch (mut) { |
| 12 | case wasm::Mutability::VAR: return out << "var"; |
| 13 | case wasm::Mutability::CONST: return out << "const"; |
| 14 | } |
| 15 | return out; |
| 16 | } |
| 17 | |
| 18 | auto operator<<(std::ostream& out, wasm::Limits limits) -> std::ostream& { |
| 19 | out << limits.min; |
nothing calls this directly
no test coverage detected