File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -220,10 +220,11 @@ attemptEquation sideCondition termLike equation =
220220 whileDebugAttemptEquation'
221221 :: simplifier (AttemptEquationResult variable )
222222 -> simplifier (AttemptEquationResult variable )
223- whileDebugAttemptEquation' action = do
224- result <- whileDebugAttemptEquation termLike equationRenamed action
225- debugAttemptEquationResult equation result
226- return result
223+ whileDebugAttemptEquation' action =
224+ whileDebugAttemptEquation termLike equationRenamed $ do
225+ result <- action
226+ debugAttemptEquationResult equation result
227+ return result
227228
228229-- | Simplify the argument of a function definition equation with the
229230-- match substitution and the priority predicate. This will avoid
You can’t perform that action at this time.
0 commit comments