Lean4
/-- Clears all hypotheses it can, except those provided after a minus sign. Example:
```
clear * - h₁ h₂
```
-/
@[tactic_parser 1000]
public meta def clearExceptTactic : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Lean.Elab.Tactic.clearExceptTactic 1022
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.nonReservedSymbol✝ "clear " false✝) (ParserDescr.symbol✝ "*"))
(ParserDescr.symbol✝ " -"))
(ParserDescr.unary✝ `many
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.const✝ `ppSpace) (ParserDescr.const✝ `colGt))
(ParserDescr.const✝ `ident))))