aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-18 13:28:58 +0200
committerMarvin Borner2022-08-18 13:29:24 +0200
commit9148f5d2a82ac7784649bf8a75b4e9b6d87b6cea (patch)
treed9ac1ff0b06401a8206c1872378f23e93381048e /src/Helper.hs
parent266286d108b8304efc67d64f47c1ee9d8d4b17c9 (diff)
Reduced redundant testing
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