Lean4
/-- Modifier `recover` for a tactic (sequence) to debug cases where goals are closed incorrectly.
The tactic `recover tacs` for a tactic (sequence) `tacs` applies the tactics and then adds goals
that are not closed, starting from the original goal. -/
@[tactic_parser 1000]
public meta def tacticRecover_ : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Mathlib.Tactic.tacticRecover_ 1022
(ParserDescr.binary✝ `andthen (ParserDescr.nonReservedSymbol✝ "recover " false✝) (ParserDescr.const✝ `tacticSeq))