Lean4
/-- The syntax is `#push head e`, where `head` is a constant and `e` is an expression,
which will print the `push head` form of `e`.
`#push` understands local variables, so you can use them to introduce parameters.
-/
@[command_parser 1000]
public meta def pushCommand : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Mathlib.Tactic.Push.pushCommand 1022
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "#push ") (ParserDescr.const✝ `ident))
(ParserDescr.unary✝ `group (ParserDescr.const✝ `ppSpace)))
(ParserDescr.cat✝ `term 0))