diff options
Diffstat (limited to 'sil.icl')
-rw-r--r-- | sil.icl | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,7 +23,7 @@ import ABC.Assembler from Sil.Check import :: CheckError, checkProgram import qualified Sil.Compile as SC -from Sil.Compile import :: CompileError, instance toString CompileError +import Sil.Error import Sil.Parse from Sil.Syntax import :: Program import Sil.Util.Parser @@ -119,7 +119,7 @@ where <|> item "--generate" *> pure (\cli -> {cli & generate=True}) <|> item "--run" *> pure (\cli -> {cli & run=True}) <|> (satisfy isFilename >>= \name -> pure (\cli -> {cli & inputfile=name})) - <?> Invalid "command line argument" opt + <?> P_Invalid "command line argument" opt ) isFilename :: (String -> Bool) @@ -142,4 +142,4 @@ where <<< f (Ok a) = f <<< a <<< f (Error e) = f <<< e -instance <<< CompileError where <<< f e = f <<< toString e +instance <<< Error where <<< f e = f <<< toString e |