aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-21 14:06:13 +0200
committerMarvin Borner2022-08-21 14:07:22 +0200
commit22aa1a17a83f62af66c77e1795310936f7a019b0 (patch)
tree33301b1ad4ec84028ba95176e668417951f82117 /src/Helper.hs
parent70c3c431f239f8db697c50f39ce4bd9cc5413c97 (diff)
Moved Environment to Map
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs20
1 files changed, 4 insertions, 16 deletions
diff --git a/src/Helper.hs b/src/Helper.hs
index 00b4ce5..23f6361 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -120,27 +120,19 @@ instance Show Expression where
<> "\ESC[33m)\ESC[0m"
show (Prefix p e) = show p <> " " <> show e
-type EnvDef = (String, Expression)
data EvalConf = EvalConf
{ isRepl :: Bool
, evalTests :: Bool
, nicePath :: String
, evalPaths :: [String]
}
-data Environment = Environment [(EnvDef, Environment)]
+-- data Environment = Environment [(EnvDef, Environment)]
+data Environment = Environment (M.Map String (Expression, Environment))
data EnvCache = EnvCache
{ _imported :: M.Map String Environment
}
type Program = S.State Environment
-instance Semigroup Environment where
- (Environment e1) <> (Environment e2) = Environment $ e1 <> e2
-
-instance Show Environment where
- show (Environment env) = intercalate "\n" $ map
- (\((n, f), s) -> "\t" <> show n <> ": " <> show f <> " - " <> show s)
- env
-
---
listify :: [Expression] -> Expression
@@ -197,14 +189,10 @@ decodeStdout e = do
---
-lookupValues :: (Eq b) => b -> [(a, b)] -> [a]
-lookupValues _ [] = []
-lookupValues key ((x, y) : xys) | key == y = x : lookupValues key xys
- | otherwise = lookupValues key xys
-
+-- TODO: Performanize
matchingFunctions :: Expression -> Environment -> String
matchingFunctions e (Environment env) =
- intercalate ", " $ nub $ lookupValues e (map fst env)
+ intercalate ", " $ map fst $ M.toList $ M.filter (\(e', _) -> e == e') env
-- TODO: Expression -> Maybe Char is missing
maybeHumanifyExpression :: Expression -> Maybe String