aboutsummaryrefslogtreecommitdiff
path: root/src/Language/SimpleShell/Parser/Common/Root.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/Common/Root.hs
parent0d0c9a61291b0fe0b9f49bdc91955ab797593fd9 (diff)
Rename auxiliary parser modules
Diffstat (limited to 'src/Language/SimpleShell/Parser/Common/Root.hs')
-rw-r--r--src/Language/SimpleShell/Parser/Common/Root.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Language/SimpleShell/Parser/Common/Root.hs b/src/Language/SimpleShell/Parser/Common/Root.hs
new file mode 100644
index 0000000..c0ec448
--- /dev/null
+++ b/src/Language/SimpleShell/Parser/Common/Root.hs
@@ -0,0 +1,12 @@
+module Language.SimpleShell.Parser.Common.Root
+ ( RootParser
+ )
+where
+
+
+import Data.Void (Void)
+import Data.Text (Text)
+import Text.Megaparsec (Parsec)
+
+
+type RootParser = Parsec Void Text