Skip to content
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

Closed
jD91mZM2 opened this issue Jan 4, 2018 · 12 comments
Closed

Output as code string? #294

jD91mZM2 opened this issue Jan 4, 2018 · 12 comments

Comments

@jD91mZM2
Copy link

jD91mZM2 commented Jan 4, 2018

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?)

@dtolnay
Copy link
Owner

dtolnay commented Jan 4, 2018

The quote crate can give you a string of any Syn data structure.

let v = /* ... */;
quote!(#v).to_string()

@jD91mZM2
Copy link
Author

jD91mZM2 commented Jan 4, 2018

That seems to space-separate tokens rather than actually format them as runnable code. For example, use test::Test; becomes use test :: Test ;.

@dtolnay
Copy link
Owner

dtolnay commented Jan 4, 2018

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 rustfmt if you need.

@jD91mZM2
Copy link
Author

jD91mZM2 commented Jan 4, 2018

Alright! Is there any chance you could somehow preserve formatting through some optional feature or such?

@mystor
Copy link
Collaborator

mystor commented Jan 4, 2018

@jD91mZM2 That would be the work of an external crate - it's outside the scope of syn (which only works with tokens).

@jD91mZM2
Copy link
Author

jD91mZM2 commented Jan 4, 2018

Yeah but you would still need to alter the internal token enum to add whitespace as different variants?

@jD91mZM2
Copy link
Author

jD91mZM2 commented Jan 9, 2018

Ooohhh I just noticed your dtolnay/proc-macro2#36 PR. If that somehow could be used in syn, that would be amazing!

@dtolnay
Copy link
Owner

dtolnay commented Jan 12, 2018

Syn uses the same Span type as proc-macro2 so that PR should already be usable with Syn. You need to build with RUSTFLAGS='--cfg procmacro2_semver_exempt' because the API has not been figured out yet, but once you do, you get a start() and end() method on every span in the syntax tree giving you the line and column in the input string.

@jD91mZM2
Copy link
Author

Awesome!

@jD91mZM2
Copy link
Author

Can't seem to get it to work. Doesn't cfg work with cargo doc perhaps?

@dtolnay
Copy link
Owner

dtolnay commented Jan 12, 2018

I don't think cargo doc picks it up but cargo build should work.

@jD91mZM2
Copy link
Author

Ah, bummer. Thanks!

Repository owner locked and limited conversation to collaborators Nov 23, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants