This commit is contained in:
rhiannon morris 2023-08-26 21:07:10 +02:00
parent 22db2724ce
commit f3f74d581a
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ main : IO ()
main = do
seen <- newIORef SortedSet.empty
defs <- newIORef SortedMap.empty
suf <- newIORef $ the Nat 0
suf <- newIORef 0
for_ (drop 1 !getArgs) $ \file => do
putStrLn "checking \{file}"
Right res <- fromParserIO ["."] seen suf defs $ loadProcessFile noLoc file

View File

@ -5,7 +5,7 @@ import public Quox.Parser.FromParser.Error as Quox.Parser.FromParser
import Quox.Parser.Syntax
import Quox.Parser.Parser
import Quox.Parser.LoadFile
import public Quox.Parser.LoadFile
import Quox.Typechecker
import Data.List