summaryrefslogtreecommitdiff
path: root/src/Parser/Core.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2025-02-27 16:39:04 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2025-02-27 21:00:40 +0100
commit13f549d68fb235522ae98bf04d2e09abdb1442ea (patch)
tree0d7c3c7e4ac58d6f8ee55a3e98ecac0ca0b1a317 /src/Parser/Core.hs
parent461a67cf2e6bea76dd7ad3e1636b68d061002e0d (diff)
Refactor script/expression related code to multiple modules
Diffstat (limited to 'src/Parser/Core.hs')
-rw-r--r--src/Parser/Core.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Parser/Core.hs b/src/Parser/Core.hs
index 5fb2139..abd8b96 100644
--- a/src/Parser/Core.hs
+++ b/src/Parser/Core.hs
@@ -17,6 +17,8 @@ import Text.Megaparsec.Char
import qualified Text.Megaparsec.Char.Lexer as L
import Network ()
+import Script.Expr
+import Script.Module
import Test
newtype TestParser a = TestParser (StateT TestParserState (ParsecT CustomTestError TestStream IO) a)