mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-31 01:11:06 +00:00
Take &str instead of String in argument fn
This commit is contained in:
parent
59c1b2a565
commit
91ea972c03
@ -85,7 +85,7 @@ impl<'a, 'b> Js2Rust<'a, 'b> {
|
|||||||
{
|
{
|
||||||
if let Some(arg_names) = opt_arg_names.into() {
|
if let Some(arg_names) = opt_arg_names.into() {
|
||||||
for (arg, arg_name) in function.arguments.iter().zip(arg_names) {
|
for (arg, arg_name) in function.arguments.iter().zip(arg_names) {
|
||||||
self.argument(arg, arg_name.clone())?;
|
self.argument(arg, arg_name.as_str())?;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for arg in function.arguments.iter() {
|
for arg in function.arguments.iter() {
|
||||||
@ -151,9 +151,9 @@ impl<'a, 'b> Js2Rust<'a, 'b> {
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn abi_arg(&mut self, opt_arg_name: Option<String>) -> String {
|
fn abi_arg(&mut self, opt_arg_name: Option<&str>) -> String {
|
||||||
let ret = if let Some(x) = opt_arg_name {
|
let ret = if let Some(x) = opt_arg_name {
|
||||||
x
|
x.into()
|
||||||
} else {
|
} else {
|
||||||
format!("arg{}", self.arg_idx)
|
format!("arg{}", self.arg_idx)
|
||||||
};
|
};
|
||||||
@ -161,9 +161,9 @@ impl<'a, 'b> Js2Rust<'a, 'b> {
|
|||||||
ret
|
ret
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn argument<I>(&mut self, arg: &Descriptor, opt_arg_name: I) -> Result<&mut Self, Error>
|
pub fn argument<'c, I>(&mut self, arg: &Descriptor, opt_arg_name: I) -> Result<&mut Self, Error>
|
||||||
where
|
where
|
||||||
I: Into<Option<String>>,
|
I: Into<Option<&'c str>>,
|
||||||
{
|
{
|
||||||
let i = self.arg_idx;
|
let i = self.arg_idx;
|
||||||
let name = self.abi_arg(opt_arg_name.into());
|
let name = self.abi_arg(opt_arg_name.into());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user