aboutsummaryrefslogtreecommitdiff
path: root/src/Language/SimpleShell/Parser/Expr.hs
diff options
context:
space:
mode:
authorEinhard Leichtfuß <alguien@respiranto.de>2025-05-21 11:51:00 +0200
committerEinhard Leichtfuß <alguien@respiranto.de>2025-05-21 12:03:00 +0200
commitf88d78d60bad406ce775d29ec5891d8c46974119 (patch)
tree90a4421cbcb932490f5ebc84f37de49abdba37d3 /src/Language/SimpleShell/Parser/Expr.hs
parent0d0c9a61291b0fe0b9f49bdc91955ab797593fd9 (diff)
Rename auxiliary parser modules
Diffstat (limited to 'src/Language/SimpleShell/Parser/Expr.hs')
-rw-r--r--src/Language/SimpleShell/Parser/Expr.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Language/SimpleShell/Parser/Expr.hs b/src/Language/SimpleShell/Parser/Expr.hs
index ab27555..dddc82a 100644
--- a/src/Language/SimpleShell/Parser/Expr.hs
+++ b/src/Language/SimpleShell/Parser/Expr.hs
@@ -14,13 +14,13 @@ where
import Language.SimpleShell.AST.Expr (Expr(..), TypedExpr)
import Language.SimpleShell.AST.Name (FunName, VarName)
import Language.SimpleShell.AST.SimpleType (SimpleType(..), Typed, FunSig)
-import Language.SimpleShell.Parser
+import Language.SimpleShell.Parser.Common.Lexeme
( lexeme
, symbol
, commentFirstChars
)
+import Language.SimpleShell.Parser.Common.Root (RootParser)
import Language.SimpleShell.Parser.Name (nameP, keyword)
-import Language.SimpleShell.Parser.Root (RootParser)
import Language.SimpleShell.Parser.SimpleType (forceType)
import Control.Monad.Combinators.FailExpr
( Associativity(..)