Lean4
/-- `mfderiv[u] f x` elaborates to `mfderivWithin I J f u x`,
trying to determine `I` and `J` from the local context. -/
@[scoped term_parser 1000]
public meta def «termMfderiv[_]__» : Lean.ParserDescr✝ :=
ParserDescr.node✝ `Manifold.«termMfderiv[_]__» 1024
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "mfderiv[") (ParserDescr.cat✝ `term 0))
(ParserDescr.symbol✝ "]"))
(ParserDescr.unary✝ `group (ParserDescr.const✝ `ppSpace)))
(ParserDescr.cat✝ `term 1023))