(&self, f: &mut std::fmt::Formatter<'_>)
| 320 | |
| 321 | impl Display for Keyword { |
| 322 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 323 | write!(f, "{}", self.keyword)?; |
| 324 | if let Some(suffix) = &self.suffix { |
| 325 | write!(f, "_{suffix}")?; |
| 326 | } |
| 327 | |
| 328 | Ok(()) |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | impl Keyword { |
nothing calls this directly
no outgoing calls
no test coverage detected