diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2023-04-23 22:17:49 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2023-04-23 22:17:49 +0200 |
commit | bb0a52edc8d0e846c72f9703acb09e6882a1726e (patch) | |
tree | 44b60a89072e4ae5ffa1baa366d4553c5c2f8487 /src/Parser/Expr.hs | |
parent | a9257077712ca52cd5cd82b0de00118fc702fdf6 (diff) |
Drop unused ProcName parameter type instance
Diffstat (limited to 'src/Parser/Expr.hs')
-rw-r--r-- | src/Parser/Expr.hs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Parser/Expr.hs b/src/Parser/Expr.hs index 1f2382a..d609e6c 100644 --- a/src/Parser/Expr.hs +++ b/src/Parser/Expr.hs @@ -1,6 +1,4 @@ module Parser.Expr ( - procName, - varName, newVarName, addVarName, @@ -29,15 +27,8 @@ import Text.Megaparsec.Char import qualified Text.Megaparsec.Char.Lexer as L import Parser.Core -import Process (ProcName(..)) import Test -procName :: TestParser ProcName -procName = label "process name" $ lexeme $ do - c <- lowerChar - cs <- takeWhileP Nothing (\x -> isAlphaNum x || x == '_' || x == '-') - return $ ProcName $ TL.toStrict (c `TL.cons` cs) - identifier :: TestParser Text identifier = do lexeme $ TL.toStrict <$> takeWhile1P Nothing (\x -> isAlphaNum x || x == '_') |