diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2024-11-10 11:25:29 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-11-12 22:45:56 +0100 |
commit | 20f8105e32b5c8d97b67f32b751f01904252ac1f (patch) | |
tree | aff5500ef7567835715922e3f176abb7b3419eea /src/Parser/Core.hs | |
parent | 6447095bcffd101507afb65854da22bd4ee6fcaa (diff) |
Remove ExprStatement in favor of using Expr TestBlock
Diffstat (limited to 'src/Parser/Core.hs')
-rw-r--r-- | src/Parser/Core.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Parser/Core.hs b/src/Parser/Core.hs index 10a572b..57b2eb4 100644 --- a/src/Parser/Core.hs +++ b/src/Parser/Core.hs @@ -39,7 +39,7 @@ runTestParser path content initState (TestParser parser) = runIdentity . flip (f data Toplevel = ToplevelTest Test - | ToplevelDefinition ( VarName, SomeVarValue ) + | ToplevelDefinition ( VarName, SomeExpr ) data TestParserState = TestParserState { testVars :: [ ( VarName, SomeExprType ) ] |