Skip to content

Commit ded3be4

Browse files
kmillluisacicolini
authored andcommitted
feat: modify delaborator to tag generalized field notation (leanprover#6703)
This PR modifies the delaborator so that in `pp.tagAppFns` mode, generalized field notation is tagged with the head constant. The effect is that docgen documentation will linkify dot notation. Internal change: now formatted `rawIdent` can be tagged.
1 parent 74ffdd9 commit ded3be4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Lean/PrettyPrinter/Delaborator/Builtins.lean

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def delabAppImplicitCore (unexpand : Bool) (numArgs : Nat) (delabHead : Delab) (
427427
let isFirst := args[0:fieldIdx].all (· matches .skip)
428428
-- Clear the `obj` argument from `args`.
429429
let args' := args.set! fieldIdx .skip
430-
let mut head : Term ← `($obj.$(mkIdent field))
430+
let mut head : Term ← `($obj.$(mkIdentFrom fnStx field))
431431
if isFirst then
432432
-- If the object is the first argument (after some implicit arguments),
433433
-- we can annotate `obj.field` with the prefix of the application

src/Lean/PrettyPrinter/Formatter.lean

+2-2
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,9 @@ def identNoAntiquot.formatter : Formatter := do
441441

442442
@[combinator_formatter rawIdentNoAntiquot] def rawIdentNoAntiquot.formatter : Formatter := do
443443
checkKind identKind
444-
let Syntax.ident info _ id _ ← getCur
444+
let stx@(Syntax.ident info _ id _) ← getCur
445445
| throwError m!"not an ident: {← getCur}"
446-
pushToken info id.toString true
446+
withMaybeTag (getExprPos? stx) (pushToken info id.toString true)
447447
goLeft
448448

449449
@[combinator_formatter identEq] def identEq.formatter (_id : Name) := rawIdentNoAntiquot.formatter

0 commit comments

Comments
 (0)