-
-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output as code string? #294
Comments
The let v = /* ... */;
quote!(#v).to_string() |
That seems to space-separate tokens rather than actually format them as runnable code. For example, |
Space-separated tokens are runnable code. 😉 mod test { pub struct Test ; } use test :: Test ; fn main ( ) { let _ = Test ; } There isn't currently a pretty-printer for Syn because we are focused mostly on the procedural macro use case where the tokens are handed straight back to the compiler, but you can pass the output through |
Alright! Is there any chance you could somehow preserve formatting through some optional feature or such? |
@jD91mZM2 That would be the work of an external crate - it's outside the scope of syn (which only works with tokens). |
Yeah but you would still need to alter the internal token enum to add whitespace as different variants? |
Ooohhh I just noticed your dtolnay/proc-macro2#36 PR. If that somehow could be used in syn, that would be amazing! |
Syn uses the same |
Awesome! |
Can't seem to get it to work. Doesn't cfg work with |
I don't think |
Ah, bummer. Thanks! |
Hi! I've looked around and can't find anything for converting a syn object to a code string (like, fully working Rust code).
I'd like to use
syn
to modify source code. (Is that the wrong approach by the way?)The text was updated successfully, but these errors were encountered: