Remove wasm64 target.
This commit is contained in:
@@ -293,14 +293,8 @@ impl Default for Engine {
|
||||
#[cfg(not(feature = "no_module"))]
|
||||
#[cfg(not(feature = "no_std"))]
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
#[cfg(not(target_arch = "wasm64"))]
|
||||
module_resolver: Some(Box::new(resolvers::FileModuleResolver::new())),
|
||||
#[cfg(any(
|
||||
feature = "no_module",
|
||||
feature = "no_std",
|
||||
target_arch = "wasm32",
|
||||
target_arch = "wasm64"
|
||||
))]
|
||||
#[cfg(any(feature = "no_module", feature = "no_std", target_arch = "wasm32",))]
|
||||
module_resolver: None,
|
||||
|
||||
type_names: HashMap::new(),
|
||||
@@ -381,7 +375,6 @@ fn extract_prop_from_setter(fn_name: &str) -> Option<&str> {
|
||||
fn default_print(s: &str) {
|
||||
#[cfg(not(feature = "no_std"))]
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
#[cfg(not(target_arch = "wasm64"))]
|
||||
println!("{}", s);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user