Lean4
/-- Arguments to `@[simps]` attribute.
Currently, a potential `(attr := ...)` argument has to come before other configuration options. -/
meta def simpsArgsRest : Lean.ParserDescr✝ :=
ParserDescr.nodeWithAntiquot✝ "simpsArgsRest" `Lean.Parser.Attr.simpsArgsRest
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen Lean.Parser.Attr.simpsOptAttrOption Lean.Parser.Tactic.optConfig)
(ParserDescr.unary✝ `many
(ParserDescr.binary✝ `andthen (ParserDescr.const✝ `ppSpace) (ParserDescr.const✝ `ident))))