(kind: &str)
| 19 | } |
| 20 | |
| 21 | fn is_comment(kind: &str) -> bool { |
| 22 | matches!( |
| 23 | kind, |
| 24 | "comment" | "line_comment" | "block_comment" | "documentation_comment" |
| 25 | ) |
| 26 | } |
| 27 | |
| 28 | struct Cleaners { |
| 29 | block_open: Regex, |
no outgoing calls
no test coverage detected