Go to file
2017-12-11 14:13:08 -05:00
src Initial implementation of stable meaningful spans 2017-12-11 14:13:08 -05:00
tests Initial implementation of stable meaningful spans 2017-12-11 14:13:08 -05:00
.gitignore Initial commit 2017-05-19 17:51:59 -07:00
.travis.yml Fix CI 2017-11-25 06:42:34 -08:00
Cargo.toml Initial implementation of stable meaningful spans 2017-12-11 14:13:08 -05:00
LICENSE-APACHE Some extra files 2017-05-19 19:41:03 -07:00
LICENSE-MIT Some extra files 2017-05-19 19:41:03 -07:00
README.md Fix copy/paste 2017-10-30 14:10:07 -07:00

proc-macro2

Documentation

A small shim over the proc_macro crate in the compiler intended to multiplex the current stable interface (as of 2017-07-05) and the upcoming richer interface.

The upcoming support has features like:

  • Span information on tokens
  • No need to go in/out through strings
  • Structured input/output

The hope is that libraries ported to proc_macro2 will be trivial to port to the real proc_macro crate once the support on nightly is stabilize.

Usage

This crate by default compiles on the stable version of the compiler. It only uses the stable surface area of the proc_macro crate upstream in the compiler itself. Usage is done via:

[dependencies]
proc-macro2 = "0.1"

followed by

extern crate proc_macro;
extern crate proc_macro2;

#[proc_macro_derive(MyDerive)]
pub fn my_derive(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input: proc_macro2::TokenStream = input.into();

    let output: proc_macro2::TokenStream = {
        /* transform input */
    };

    output.into()
}

If you'd like you can enable the unstable feature in this crate. This will cause it to compile against the unstable and nightly-only features of the proc_macro crate. This in turn requires a nightly compiler. This should help preserve span information, however, coming in from the compiler itself.

You can enable this feature via:

[dependencies]
proc-macro2 = { version = "0.1", features = ["unstable"] }

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Serde by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.