Lean4
/-- A variant of `clear` which clears not only the given hypotheses but also any other hypotheses
depending on them -/
@[tactic_parser 1000]
public meta def clear! : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Mathlib.Tactic.clear! 1022
(ParserDescr.binary✝ `andthen (ParserDescr.nonReservedSymbol✝ "clear!" false✝)
(ParserDescr.unary✝ `many
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.const✝ `ppSpace) (ParserDescr.const✝ `colGt))
(ParserDescr.const✝ `ident))))