diff options
author | Marvin Borner | 2022-08-22 20:32:22 +0200 |
---|---|---|
committer | Marvin Borner | 2022-08-22 20:32:22 +0200 |
commit | 757a3e284ca52e81aa824219a535bba89c058e15 (patch) | |
tree | 2cad8d8ce555939a6f636483affac76ff987d85d /src/Helper.hs | |
parent | 4ed788a832655006171754d15d370a6b64793477 (diff) |
Fixed execution of multiple commands and removed :print
Diffstat (limited to 'src/Helper.hs')
-rw-r--r-- | src/Helper.hs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Helper.hs b/src/Helper.hs index 78b1f1c..5433dd0 100644 --- a/src/Helper.hs +++ b/src/Helper.hs @@ -35,13 +35,13 @@ printContext (Context inp path) = p $ lines inp errPrefix :: String errPrefix = "\ESC[41mERROR\ESC[0m " -data Error = SyntaxError String | UndeclaredIdentifier Identifier | InvalidIndex Int | FailedTest Expression Expression Expression Expression | ContextualError Error Context | ImportError String +data Error = SyntaxError String | UndefinedIdentifier Identifier | InvalidIndex Int | FailedTest Expression Expression Expression Expression | ContextualError Error Context | ImportError String instance Show Error where show (ContextualError err ctx) = show err <> "\n" <> (printContext ctx) show (SyntaxError err) = errPrefix <> "invalid syntax\n\ESC[45mnear\ESC[0m " <> err - show (UndeclaredIdentifier ident) = - errPrefix <> "undeclared identifier " <> show ident + show (UndefinedIdentifier ident) = + errPrefix <> "undefined identifier " <> show ident show (InvalidIndex err) = errPrefix <> "invalid index " <> show err show (FailedTest exp1 exp2 red1 red2) = errPrefix @@ -102,7 +102,9 @@ instance Show Identifier where show ident = "\ESC[95m" <> functionName ident <> "\ESC[0m" data Expression = Bruijn Int | Function Identifier | Abstraction Expression | Application Expression Expression | Infix Expression Identifier Expression | Prefix Identifier Expression deriving (Ord, Eq) -data Instruction = Define Identifier Expression [Instruction] | Evaluate Expression | Comment | Input String | Import String String | Test Expression Expression | ContextualInstruction Instruction String +data Command = Input String | Import String String | Test Expression Expression + deriving (Show) +data Instruction = Define Identifier Expression [Instruction] | Evaluate Expression | Comment | Commands [Command] | ContextualInstruction Instruction String deriving (Show) instance Show Expression where show (Bruijn x ) = "\ESC[91m" <> show x <> "\ESC[0m" |