(
&self,
ctx: &mut BodyContext<W>,
val: bool,
)
| 1160 | } |
| 1161 | |
| 1162 | fn emit_bool<W: Write>( |
| 1163 | &self, |
| 1164 | ctx: &mut BodyContext<W>, |
| 1165 | val: bool, |
| 1166 | ) -> Result<(), std::fmt::Error> { |
| 1167 | write!(ctx.out, "{val}") |
| 1168 | } |
| 1169 | |
| 1170 | fn emit_int<W: Write>( |
| 1171 | &self, |
no outgoing calls
no test coverage detected