Last active
September 23, 2024 20:38
-
-
Save chrissimpkins/4b442351038c8926195f7cdea74c9659 to your computer and use it in GitHub Desktop.
Approach for removal of comments with syn crate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct CommentRemove; | |
impl VisitMut for CommentRemove { | |
fn visit_attribute_mut(&mut self, node: &mut Attribute) { | |
// identify comments | |
if node.path.is_ident("doc") { | |
println!("{:?}", node.tokens); | |
println!("{:?}", node.path); | |
// can you "null" out the Attribute in some way so that the comments are removed when you transform back into Rust text source? | |
// or is there a different approach? | |
node = &mut Attribute{ | |
bracket_token: None, | |
pound_token: None, | |
style: None, | |
path: None, | |
tokens: None, | |
}; | |
} | |
visit_mut::visit_attribute_mut(self, node); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/SOF3/portrait/blob/0.3.0/codegen/src/util.rs#L151
You can use
#[cfg(all())]
.