WIP update dependencies
This commit is contained in:
@@ -74,7 +74,7 @@ impl Target for LuaJIT {
|
||||
Self::write_call_of("assert_trap", data, w)?;
|
||||
writeln!(w)
|
||||
}
|
||||
WastExecute::Get { module, global } => {
|
||||
WastExecute::Get { module, global, .. } => {
|
||||
let name = get_name_from_id(*module);
|
||||
|
||||
write!(w, "assert_neq(")?;
|
||||
@@ -114,7 +114,7 @@ impl Target for LuaJIT {
|
||||
|
||||
writeln!(w, "}})")
|
||||
}
|
||||
WastExecute::Get { module, global } => {
|
||||
WastExecute::Get { module, global, .. } => {
|
||||
let name = get_name_from_id(*module);
|
||||
|
||||
write!(w, "assert_eq(")?;
|
||||
|
||||
@@ -88,7 +88,7 @@ impl Target for Luau {
|
||||
Self::write_call_of("assert_trap", data, w)?;
|
||||
writeln!(w)
|
||||
}
|
||||
WastExecute::Get { module, global } => {
|
||||
WastExecute::Get { module, global, .. } => {
|
||||
let name = get_name_from_id(*module);
|
||||
|
||||
write!(w, "assert_neq(")?;
|
||||
@@ -128,7 +128,7 @@ impl Target for Luau {
|
||||
|
||||
writeln!(w, "}})")
|
||||
}
|
||||
WastExecute::Get { module, global } => {
|
||||
WastExecute::Get { module, global, .. } => {
|
||||
let name = get_name_from_id(*module);
|
||||
|
||||
write!(w, "assert_eq(")?;
|
||||
|
||||
@@ -41,8 +41,8 @@ macro_rules! impl_write_number_nan {
|
||||
};
|
||||
}
|
||||
|
||||
impl_write_number_nan!(write_f32, write_f32_nan, f32, wast::token::Float32);
|
||||
impl_write_number_nan!(write_f64, write_f64_nan, f64, wast::token::Float64);
|
||||
impl_write_number_nan!(write_f32, write_f32_nan, f32, wast::token::F32);
|
||||
impl_write_number_nan!(write_f64, write_f64_nan, f64, wast::token::F64);
|
||||
|
||||
#[allow(clippy::missing_const_for_fn)]
|
||||
fn try_into_ast_module(data: QuoteWat) -> Option<WaModule> {
|
||||
|
||||
Reference in New Issue
Block a user