fix imports

This commit is contained in:
Ilya Rezvov
2021-04-04 17:11:07 -07:00
parent d4a72089ba
commit afb5cb4f05
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -72,8 +72,8 @@ runScript onAssertFail script = do
hostGlobals = do
let globI32 = Interpreter.makeConstGlobal $ Interpreter.VI32 666
let globI64 = Interpreter.makeConstGlobal $ Interpreter.VI64 666
globF32 <- Interpreter.makeMutGlobal $ Interpreter.VF32 666
globF64 <- Interpreter.makeMutGlobal $ Interpreter.VF64 666
let globF32 = Interpreter.makeConstGlobal $ Interpreter.VF32 666
let globF64 = Interpreter.makeConstGlobal $ Interpreter.VF64 666
return (
Interpreter.HostGlobal globI32,
Interpreter.HostGlobal globI64,