7 unstable releases

new 0.4.2 Apr 14, 2024
0.4.1 Jul 21, 2023
0.4.0 Jun 24, 2023
0.3.1 Apr 3, 2023
0.1.0 May 8, 2019

#1935 in Procedural macros

Download history 2/week @ 2024-01-21 4/week @ 2024-02-11 19/week @ 2024-02-18 43/week @ 2024-02-25 22/week @ 2024-03-03 22/week @ 2024-03-10 19/week @ 2024-03-17 2/week @ 2024-03-24 52/week @ 2024-03-31 26/week @ 2024-04-07

101 downloads per month

MIT/Apache

10KB
99 lines

Data structures that describe Syn's syntax tree.

The Syn syntax tree is made up of more than 200 types. Occasionally it can come up that you need to implement some behavior across them all.

  • For example the Rust integration for AST Explorer wants to turn a syntax tree from Syn into a JavaScript value understood by the platform's existing cross-language syntax tree visualization code.

  • As another example from within Syn itself, the traits and implementations of the visit, visit_mut, and fold modules can be generated programmatically from a description of the syntax tree.

To make this type of code as easy as possible to implement in any language, every Syn release comes with a machine-readable description of that version of the syntax tree as a JSON file syn.json. This syn-codegen crate provides the canonical data structures for parsing and making use of the representation in syn.json from Rust code.

Example

use syn_codegen::Definitions;

const SYN: &str = include_str!("syn.json");

fn main() {
    let defs: Definitions = serde_json::from_str(SYN).unwrap();

    for node in &defs.types {
        println!("syn::{}", node.ident);
    }
}

Dependencies

~1–1.3MB
~23K SLoC