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