1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![recursion_limit = "512"]

extern crate proc_macro;

mod codegen;
mod parser;
use syn::parse_macro_input;

#[proc_macro]
pub fn statemachine(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    // Parse the syntax into structures
    let input = parse_macro_input!(input as parser::StateMachine);

    // Validate syntax
    let sm = parser::ParsedStateMachine::new(input);

    // Generate code
    let output = codegen::generate_code(&sm);

    // Hand the output tokens back to the compiler
    output.into()
}