aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-12 15:26:03 +0200
committerMarvin Borner2022-08-12 15:26:03 +0200
commitcce495b3b4440997274ecab3d72ed61d6a50b007 (patch)
treecc56c7af514dd6ca31edb5360a6682ac5439af01 /src/Helper.hs
parentb3cf49974e8af4e35ffc01fbe2f8e181d38de03a (diff)
Added infix operator support
This isn't compatible with the :test .. = .. syntax, therefore I removed it. They also don't have custom precedence/associativity support and aren't chainable right now.
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Helper.hs b/src/Helper.hs
index 6626598..66fe265 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -89,7 +89,7 @@ printBundle ParseErrorBundle {..} =
<> pointer
<> "\n"
-data Expression = Bruijn Int | Variable String | Abstraction Expression | Application Expression Expression
+data Expression = Bruijn Int | Variable String | Abstraction Expression | Application Expression Expression | Infix Expression String Expression
deriving (Ord, Eq)
data Instruction = Define String Expression [Instruction] | Evaluate Expression | Comment | Import String String | Test Expression Expression | ContextualInstruction Instruction String
deriving (Show)
@@ -99,6 +99,8 @@ instance Show Expression where
show (Abstraction e ) = "\ESC[36m[\ESC[0m" <> show e <> "\ESC[36m]\ESC[0m"
show (Application exp1 exp2) =
"\ESC[33m(\ESC[0m" <> show exp1 <> " " <> show exp2 <> "\ESC[33m)\ESC[0m"
+ show (Infix le i re) =
+ show le <> "\ESC[95m(" <> i <> ")" <> "\ESC[0m" <> show re
type EnvDef = (String, Expression)
-- TODO: Add EvalConf to EnvState?