fix: pp.analyze missing inBottomUp
This commit is contained in:
parent
5fd68821c1
commit
3bef119136
2 changed files with 10 additions and 5 deletions
|
|
@ -445,6 +445,7 @@ where
|
|||
-- TODO: this is a very crude heuristic, motivated by https://github.com/leanprover/lean4/issues/590
|
||||
unless getPPAnalyzeOmitMax (← getOptions) && ls.any containsBadMax do
|
||||
annotateBool `pp.universes
|
||||
maybeAddExplicit
|
||||
|
||||
analyzePi : AnalyzeM Unit := do
|
||||
annotateBool `pp.binderTypes
|
||||
|
|
@ -458,10 +459,14 @@ where
|
|||
|
||||
analyzeLet : AnalyzeM Unit := do
|
||||
let Expr.letE n t v body .. ← getExpr | unreachable!
|
||||
let needsType := (← okBottomUp? v).needsType
|
||||
if needsType then annotateBool `pp.analysis.letVarType
|
||||
withLetValue $ withKnowing true true analyze
|
||||
withLetVarType $ withKnowing true false analyze
|
||||
if (← okBottomUp? v).needsType then
|
||||
annotateBool `pp.analysis.letVarType
|
||||
withLetVarType $ withKnowing true false analyze
|
||||
withLetValue $ withKnowing true true analyze
|
||||
else
|
||||
withReader (fun ctx => { ctx with inBottomUp := true }) do
|
||||
withLetValue $ withKnowing true true analyze
|
||||
|
||||
withLetBody analyze
|
||||
|
||||
analyzeSort : AnalyzeM Unit := pure ()
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ syntax (name := testDelabTDN) "#testDelabN " ident : command
|
|||
@[commandElab testDelabTDN] def elabTestDelabTDN : CommandElab
|
||||
| `(#testDelabN $name:ident) => liftTermElabM `delabTD do
|
||||
let name := name.getId
|
||||
let [name] ← resolveGlobalConst name | throwError "cannot resolve name"
|
||||
let [name] ← resolveGlobalConst (mkIdent name) | throwError "cannot resolve name"
|
||||
let some cInfo ← (← getEnv).find? name | throwError "no decl for name"
|
||||
let some value ← pure cInfo.value? | throwError "decl has no value"
|
||||
modify fun s => { s with levelNames := cInfo.levelParams }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue