diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2024-09-28 11:53:34 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-09-28 12:37:17 +0200 |
commit | f91ff15b9551cd0d325dbd03f066d48dfd70ed25 (patch) | |
tree | cd35fb0ec6d3e21b1c8c31e912bb472a335f24f7 /src/Parser | |
parent | df1d8d72a06a7d4b3b8801dce0374e6b0294f628 (diff) |
Implement "send" as a builtin
Diffstat (limited to 'src/Parser')
-rw-r--r-- | src/Parser/Statement.hs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Parser/Statement.hs b/src/Parser/Statement.hs index 912366b..67ffd76 100644 --- a/src/Parser/Statement.hs +++ b/src/Parser/Statement.hs @@ -312,11 +312,6 @@ testSpawn = command "spawn" $ Spawn <*> paramOrContext "on" <*> innerBlock -testSend :: TestParser [TestStep] -testSend = command "send" $ Send - <$> paramOrContext "to" - <*> param "" - testExpect :: TestParser [TestStep] testExpect = command "expect" $ Expect <$> cmdLine @@ -376,7 +371,6 @@ testStep = choice , testSubnet , testNode , testSpawn - , testSend , testExpect , testFlush , testDisconnectNode |