summaryrefslogtreecommitdiff
path: root/src/Parser
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2024-02-21 22:10:39 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2024-02-21 22:10:39 +0100
commit1923a8a4ea3a1bcb55f194ff226359ea492b419a (patch)
treec396d745f80cbc899379bbe5dde48876537de0ec /src/Parser
parent0391dd6a6df19f57393c25c233b448f4bb3f6353 (diff)
Update to support mtl-2.3
Diffstat (limited to 'src/Parser')
-rw-r--r--src/Parser/Core.hs2
-rw-r--r--src/Parser/Expr.hs2
-rw-r--r--src/Parser/Statement.hs1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/Parser/Core.hs b/src/Parser/Core.hs
index 1bbdd8f..da93905 100644
--- a/src/Parser/Core.hs
+++ b/src/Parser/Core.hs
@@ -1,6 +1,6 @@
module Parser.Core where
-import Control.Monad.Identity
+import Control.Monad
import Control.Monad.State
import Data.Text (Text)
diff --git a/src/Parser/Expr.hs b/src/Parser/Expr.hs
index 70649b2..894856e 100644
--- a/src/Parser/Expr.hs
+++ b/src/Parser/Expr.hs
@@ -9,7 +9,7 @@ module Parser.Expr (
import Control.Applicative (liftA2)
import Control.Monad.Combinators.Expr
-import Control.Monad.Identity
+import Control.Monad
import Control.Monad.State
import Data.Char
diff --git a/src/Parser/Statement.hs b/src/Parser/Statement.hs
index 732f417..eef0848 100644
--- a/src/Parser/Statement.hs
+++ b/src/Parser/Statement.hs
@@ -2,6 +2,7 @@ module Parser.Statement (
testStep,
) where
+import Control.Monad
import Control.Monad.Identity
import Control.Monad.State