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/Statement.hs | |
parent | a9257077712ca52cd5cd82b0de00118fc702fdf6 (diff) |
Drop unused ProcName parameter type instance
Diffstat (limited to 'src/Parser/Statement.hs')
-rw-r--r-- | src/Parser/Statement.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Parser/Statement.hs b/src/Parser/Statement.hs index 6630fac..e58779b 100644 --- a/src/Parser/Statement.hs +++ b/src/Parser/Statement.hs @@ -19,7 +19,7 @@ import qualified Text.Megaparsec.Char.Lexer as L import Network (Network, Node) import Parser.Core import Parser.Expr -import Process (Process, ProcName(..)) +import Process (Process) import Test import Util @@ -91,10 +91,6 @@ instance ParamType SourceLine where parseParam _ = mzero showParamType _ = "<source line>" -instance ParamType ProcName where - parseParam _ = procName - showParamType _ = "<proc>" - instance ExprType a => ParamType (TypedVarName a) where parseParam _ = newVarName showParamType _ = "<variable>" |