Rename visit.rs to base.rs

This commit is contained in:
Rerumu
2021-12-31 15:30:34 -05:00
parent 822465cd70
commit d5b327cf64
9 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
use wasm_smith::Module;
use wasm::writer::{luajit::LuaJIT, visit::Transpiler};
use wasm::writer::{base::Transpiler, luajit::LuaJIT};
// We are not interested in parity_wasm errors.
// Only 1 edition should need to be tested too.
+1 -1
View File
@@ -3,7 +3,7 @@
use parity_wasm::elements::Module as WasmModule;
use wasm_smith::Module as SmModule;
use wasm::writer::{luajit::LuaJIT, visit::Transpiler};
use wasm::writer::{base::Transpiler, luajit::LuaJIT};
fn fuzz_transformer(wasm: &WasmModule) {
let trans = LuaJIT::new(wasm);
+1 -1
View File
@@ -5,7 +5,7 @@ use std::io::Result;
use parity_wasm::elements::Module as WasmModule;
use wasm_smith::Module as SmModule;
use wasm::writer::{luajit::LuaJIT, visit::Transpiler};
use wasm::writer::{base::Transpiler, luajit::LuaJIT};
fn fuzz_writer(wasm: &WasmModule) -> Result<()> {
let trans = LuaJIT::new(wasm);