(top: &mut ast::Mod)
| 528 | |
| 529 | #[cfg(feature = "parser")] |
| 530 | fn strip_docstrings(top: &mut ast::Mod) { |
| 531 | match top { |
| 532 | ast::Mod::Module(module) => strip_docstring_in_body(&mut module.body), |
| 533 | ast::Mod::Expression(_expr) => {} |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | #[cfg(feature = "parser")] |
| 538 | fn strip_docstring_in_body(body: &mut Vec<ast::Stmt>) { |
no test coverage detected