diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-04-22 19:50:47 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-04-24 22:23:50 +0200 |
commit | 4ff632e50313b7d2bf03a35d78ede5d8c6b8331e (patch) | |
tree | 1cf99fca069ebbdf3cc6a78921c6bd2d65092bf3 /src/Script/Expr.hs | |
parent | 47ec9619f90af3264b11ad26654610a043ed0d8d (diff) |
Fix parsing regexes containing only a variable expansion
Diffstat (limited to 'src/Script/Expr.hs')
-rw-r--r-- | src/Script/Expr.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Script/Expr.hs b/src/Script/Expr.hs index 0c401e2..ced807c 100644 --- a/src/Script/Expr.hs +++ b/src/Script/Expr.hs @@ -23,7 +23,8 @@ module Script.Expr ( module Script.Var, - Regex(RegexPart, RegexString), regexMatch, + Regex(RegexPart, RegexString), + regexCompile, regexMatch, ) where import Control.Monad |