- ref : Lean.Syntax
- modifiers : Lean.Elab.Modifiers
Stores whether this is the header of a definition, theorem, ...
kind : Lean.Elab.DefKindShort name. Recall that all declarations in Lean 4 are potentially recursive. We use
shortDeclName
to refer to them atvalueStx
, and other declarations in the same mutual block.shortDeclName : Lean.NameFull name for this declaration. This is the name that will be added to the
Environment
.declName : Lean.NameUniverse level parameter names explicitly provided by the user.
Syntax objects for the binders occurring befor
:
, we use them to populate theInfoTree
when elaboratingvalueStx
.binderIds : Array Lean.SyntaxNumber of parameters before
:
, it also includes auto-implicit parameters automatically added by Lean.numParams : NatType including parameters.
type : Lean.ExprSyntax
object the body/value of the definition.valueStx : Lean.Syntax
DefView
after elaborating the header.
Instances For
Equations
- One or more equations did not get rendered due to their size.
A mapping from FVarId to Set of FVarIds.
The let-recs may invoke each other. Example:
let rec
f (x : Nat) := g x + y
g : Nat → Nat
| 0 => 1
| x+1 => f x + z
y
is free variable in f
, and z
is a free variable in g
.
To close f
and g
, y
and z
must be in the closure of both.
That is, we need to generate the top-level definitions.
def f (y z x : Nat) := g y z x + y
def g (y z : Nat) : Nat → Nat
| 0 => 1
| x+1 => f y z x + z
- usedFVarsMap : Lean.Elab.Term.MutualClosure.UsedFVarsMap
- modified : Bool
Instances For
Equations
- One or more equations did not get rendered due to their size.
- newLocalDecls : Array Lean.LocalDecl
- localDecls : Array Lean.LocalDecl
- newLetDecls : Array Lean.LocalDecl
Instances For
- ref : Lean.Syntax
- localDecls : Array Lean.LocalDecl
Expression used to replace occurrences of the let-rec
FVarId
.closed : Lean.Expr- toLift : Lean.Elab.Term.LetRecToLift
Instances For
Mapping from FVarId of mutually recursive functions being defined to "closure" expression.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.Term.MutualClosure.insertReplacementForLetRecs r letRecClosures = List.foldl (fun r c => Lean.FVarIdMap.insert r c.toLift.fvarId c.closed) r letRecClosures
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
sectionVars
: The section variables used in themutual
block.mainHeaders
: The elaborated header of the top-level definitions being defined by the mutual block.mainFVars
: The auxiliary variables used to represent the top-level definitions being defined by the mutual block.mainVals
: The elaborated value for the top-level definitionsletRecsToLift
: The let-rec's definitions that need to be lifted
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.