aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Helper.hs b/src/Helper.hs
index f53a700..afae9da 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -104,12 +104,12 @@ instance Show Expression where
show (Prefix p e) = "\ESC[95m" <> p <> show e <> "\ESC[0m"
type EnvDef = (String, Expression)
--- TODO: Add EvalConf to EnvState?
data EvalConf = EvalConf
{ isRepl :: Bool
, evalTests :: Bool
, nicePath :: String
, evalPaths :: [String]
+ , tested :: [String]
}
data Environment = Environment [(EnvDef, Environment)]
type Program = S.State Environment