14 lines
204 B
Rust
Raw Normal View History

2018-03-31 09:04:00 -07:00
#![recursion_limit = "256"]
extern crate proc_macro2;
#[macro_use]
extern crate quote;
#[macro_use]
extern crate syn;
extern crate wasm_bindgen_shared as shared;
pub mod ast;
mod codegen;
mod literal;