diff --git a/crates/macro/src/lib.rs b/crates/macro/src/lib.rs index aa4ab3f066b..85ef2f6c2a8 100644 --- a/crates/macro/src/lib.rs +++ b/crates/macro/src/lib.rs @@ -5,6 +5,7 @@ extern crate proc_macro; use proc_macro::TokenStream; use quote::quote; +/// A list of all the attributes can be found here: https://rustwasm.github.io/docs/wasm-bindgen/reference/attributes/index.html #[proc_macro_attribute] pub fn wasm_bindgen(attr: TokenStream, input: TokenStream) -> TokenStream { match wasm_bindgen_macro_support::expand(attr.into(), input.into()) {