2018-03-31 09:04:00 -07:00
|
|
|
#![recursion_limit = "256"]
|
2018-03-29 09:14:32 -07:00
|
|
|
|
|
|
|
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;
|