mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 19:01:06 +00:00
commit
c0e2cb3ac8
@ -8,7 +8,6 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { git = 'https://github.com/dtolnay/syn', features = ['full'] }
|
syn = { git = 'https://github.com/dtolnay/syn', features = ['full'] }
|
||||||
synom = { git = 'https://github.com/dtolnay/syn' }
|
|
||||||
quote = { git = 'https://github.com/dtolnay/quote' }
|
quote = { git = 'https://github.com/dtolnay/quote' }
|
||||||
proc-macro2 = { version = "0.1", features = ["unstable"] }
|
proc-macro2 = { version = "0.1", features = ["unstable"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#![feature(proc_macro)]
|
#![feature(proc_macro)]
|
||||||
|
|
||||||
extern crate syn;
|
extern crate syn;
|
||||||
extern crate synom;
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate quote;
|
extern crate quote;
|
||||||
extern crate proc_macro;
|
extern crate proc_macro;
|
||||||
@ -393,19 +392,19 @@ impl ToTokens for Receiver {
|
|||||||
Receiver::FreeFunction(name) => name.to_tokens(tokens),
|
Receiver::FreeFunction(name) => name.to_tokens(tokens),
|
||||||
Receiver::StructFunction(s, name) => {
|
Receiver::StructFunction(s, name) => {
|
||||||
s.to_tokens(tokens);
|
s.to_tokens(tokens);
|
||||||
syn::tokens::Colon2::default().to_tokens(tokens);
|
syn::token::Colon2::default().to_tokens(tokens);
|
||||||
name.to_tokens(tokens);
|
name.to_tokens(tokens);
|
||||||
}
|
}
|
||||||
Receiver::StructMethod(_, mutable, name) => {
|
Receiver::StructMethod(_, mutable, name) => {
|
||||||
(my_quote! { me }).to_tokens(tokens);
|
(my_quote! { me }).to_tokens(tokens);
|
||||||
syn::tokens::Dot::default().to_tokens(tokens);
|
syn::token::Dot::default().to_tokens(tokens);
|
||||||
if mutable {
|
if mutable {
|
||||||
syn::Ident::from("borrow_mut").to_tokens(tokens);
|
syn::Ident::from("borrow_mut").to_tokens(tokens);
|
||||||
} else {
|
} else {
|
||||||
syn::Ident::from("borrow").to_tokens(tokens);
|
syn::Ident::from("borrow").to_tokens(tokens);
|
||||||
}
|
}
|
||||||
tokens.append_delimited("(", Default::default(), |_| ());
|
tokens.append_delimited("(", Default::default(), |_| ());
|
||||||
syn::tokens::Dot::default().to_tokens(tokens);
|
syn::token::Dot::default().to_tokens(tokens);
|
||||||
name.to_tokens(tokens);
|
name.to_tokens(tokens);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user