diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-27 16:39:04 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-27 21:00:40 +0100 |
commit | 13f549d68fb235522ae98bf04d2e09abdb1442ea (patch) | |
tree | 0d7c3c7e4ac58d6f8ee55a3e98ecac0ca0b1a317 /src/Parser/Expr.hs | |
parent | 461a67cf2e6bea76dd7ad3e1636b68d061002e0d (diff) |
Refactor script/expression related code to multiple modules
Diffstat (limited to 'src/Parser/Expr.hs')
-rw-r--r-- | src/Parser/Expr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Parser/Expr.hs b/src/Parser/Expr.hs index da137af..5d60973 100644 --- a/src/Parser/Expr.hs +++ b/src/Parser/Expr.hs @@ -39,8 +39,8 @@ import Text.Regex.TDFA qualified as RE import Text.Regex.TDFA.Text qualified as RE import Parser.Core +import Script.Expr import Script.Expr.Class -import Test reservedWords :: [ Text ] reservedWords = |