mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-22 21:20:52 +00:00
18 lines
296 B
Rust
18 lines
296 B
Rust
|
#![recursion_limit = "128"]
|
||
|
|
||
|
extern crate proc_macro2;
|
||
|
#[macro_use]
|
||
|
extern crate quote;
|
||
|
#[macro_use]
|
||
|
extern crate syn;
|
||
|
|
||
|
extern crate wasm_bindgen_shared as shared;
|
||
|
|
||
|
macro_rules! my_quote {
|
||
|
($($t:tt)*) => (quote_spanned!(Span::call_site() => $($t)*))
|
||
|
}
|
||
|
|
||
|
pub mod ast;
|
||
|
mod codegen;
|
||
|
mod literal;
|