rhai::FnAccess -> FnAccess to enable use in internal code.

This commit is contained in:
Stephen Chung 2020-08-13 14:57:23 +08:00
parent bb334eecc7
commit 631c4be064

View File

@ -166,7 +166,7 @@ pub fn set_exported_fn(args: proc_macro::TokenStream) -> proc_macro::TokenStream
}; };
let gen_mod_path = crate::register::generated_module_path(&rust_modpath); let gen_mod_path = crate::register::generated_module_path(&rust_modpath);
let tokens = quote! { let tokens = quote! {
#module_expr.set_fn(#export_name, rhai::FnAccess::Public, #module_expr.set_fn(#export_name, FnAccess::Public,
#gen_mod_path::token_input_types().as_ref(), #gen_mod_path::token_input_types().as_ref(),
#gen_mod_path::token_callable()); #gen_mod_path::token_callable());
}; };