chore: bump toolchain
parent
8059940c30
commit
00bf10c6f0
|
@ -140,13 +140,13 @@ def prettyPrintTerm (expr : Expr) : MetaM CodeWithInfos := do
|
||||||
openDecls := ← getOpenDecls
|
openDecls := ← getOpenDecls
|
||||||
fileMap := default
|
fileMap := default
|
||||||
}
|
}
|
||||||
tagExprInfos ctx infos tt
|
return tagExprInfos ctx infos tt
|
||||||
|
|
||||||
def Info.ofConstantVal (v : ConstantVal) : MetaM Info := do
|
def Info.ofConstantVal (v : ConstantVal) : MetaM Info := do
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
let (args, type) := typeToArgsType v.type
|
let (args, type) := typeToArgsType v.type
|
||||||
let type ← prettyPrintTerm type
|
let type ← prettyPrintTerm type
|
||||||
let args ← args.mapM (λ (n, e, b) => do Arg.mk n (←prettyPrintTerm e) b)
|
let args ← args.mapM (λ (n, e, b) => do pure $ Arg.mk n (←prettyPrintTerm e) b)
|
||||||
let doc ← findDocString? env v.name
|
let doc ← findDocString? env v.name
|
||||||
match ←findDeclarationRanges? v.name with
|
match ←findDeclarationRanges? v.name with
|
||||||
-- TODO: Maybe selection range is more relevant? Figure this out in the future
|
-- TODO: Maybe selection range is more relevant? Figure this out in the future
|
||||||
|
@ -173,7 +173,7 @@ def OpaqueInfo.ofOpaqueVal (v : OpaqueVal) : MetaM OpaqueInfo := do
|
||||||
return OpaqueInfo.mk info t safety
|
return OpaqueInfo.mk info t safety
|
||||||
|
|
||||||
def isInstance (declName : Name) : MetaM Bool := do
|
def isInstance (declName : Name) : MetaM Bool := do
|
||||||
(instanceExtension.getState (←getEnv)).instanceNames.contains declName
|
return (instanceExtension.getState (←getEnv)).instanceNames.contains declName
|
||||||
|
|
||||||
partial def stripArgs (e : Expr) : Expr :=
|
partial def stripArgs (e : Expr) : Expr :=
|
||||||
match e.consumeMData with
|
match e.consumeMData with
|
||||||
|
@ -197,7 +197,7 @@ def valueToEq (v : DefinitionVal) : MetaM Expr := withLCtx {} {} do
|
||||||
let us := v.levelParams.map mkLevelParam
|
let us := v.levelParams.map mkLevelParam
|
||||||
let type ← mkEq (mkAppN (Lean.mkConst v.name us) xs) body
|
let type ← mkEq (mkAppN (Lean.mkConst v.name us) xs) body
|
||||||
let type ← mkForallFVars xs type
|
let type ← mkForallFVars xs type
|
||||||
type
|
pure type
|
||||||
|
|
||||||
def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo := do
|
def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
|
@ -207,10 +207,10 @@ def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo :=
|
||||||
match eqs? with
|
match eqs? with
|
||||||
| some eqs =>
|
| some eqs =>
|
||||||
let prettyEqs ← eqs.mapM processEq
|
let prettyEqs ← eqs.mapM processEq
|
||||||
DefinitionInfo.mk info isUnsafe v.hints prettyEqs
|
pure $ DefinitionInfo.mk info isUnsafe v.hints prettyEqs
|
||||||
| none =>
|
| none =>
|
||||||
let eq ← prettyPrintTerm $ stripArgs (←valueToEq v)
|
let eq ← prettyPrintTerm $ stripArgs (←valueToEq v)
|
||||||
DefinitionInfo.mk info isUnsafe v.hints (some #[eq])
|
pure $ DefinitionInfo.mk info isUnsafe v.hints (some #[eq])
|
||||||
catch err =>
|
catch err =>
|
||||||
IO.println s!"WARNING: Failed to calculate equational lemmata for {v.name}: {←err.toMessageData.toString}"
|
IO.println s!"WARNING: Failed to calculate equational lemmata for {v.name}: {←err.toMessageData.toString}"
|
||||||
return DefinitionInfo.mk info isUnsafe v.hints none
|
return DefinitionInfo.mk info isUnsafe v.hints none
|
||||||
|
@ -218,13 +218,13 @@ def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo :=
|
||||||
def getConstructorType (ctor : Name) : MetaM CodeWithInfos := do
|
def getConstructorType (ctor : Name) : MetaM CodeWithInfos := do
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
match env.find? ctor with
|
match env.find? ctor with
|
||||||
| some (ConstantInfo.ctorInfo i) => ←prettyPrintTerm i.type
|
| some (ConstantInfo.ctorInfo i) => prettyPrintTerm i.type
|
||||||
| _ => panic! s!"Constructor {ctor} was requested but does not exist"
|
| _ => panic! s!"Constructor {ctor} was requested but does not exist"
|
||||||
|
|
||||||
def InductiveInfo.ofInductiveVal (v : InductiveVal) : MetaM InductiveInfo := do
|
def InductiveInfo.ofInductiveVal (v : InductiveVal) : MetaM InductiveInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
let ctors ← v.ctors.mapM (λ name => do NameInfo.mk name (←getConstructorType name))
|
let ctors ← v.ctors.mapM (λ name => do pure $ NameInfo.mk name (←getConstructorType name))
|
||||||
return InductiveInfo.mk info ctors v.isUnsafe
|
return InductiveInfo.mk info ctors v.isUnsafe
|
||||||
|
|
||||||
def dropArgs (type : Expr) (n : Nat) : (Expr × List (Name × Expr)) :=
|
def dropArgs (type : Expr) (n : Nat) : (Expr × List (Name × Expr)) :=
|
||||||
|
@ -243,7 +243,7 @@ def getFieldTypes (struct : Name) (ctor : ConstructorVal) (parents : Nat) : Meta
|
||||||
let mut field_infos := #[]
|
let mut field_infos := #[]
|
||||||
for (name, type) in fields do
|
for (name, type) in fields do
|
||||||
field_infos := field_infos.push { name := struct.append name, type := ←prettyPrintTerm type}
|
field_infos := field_infos.push { name := struct.append name, type := ←prettyPrintTerm type}
|
||||||
field_infos
|
return field_infos
|
||||||
|
|
||||||
def StructureInfo.ofInductiveVal (v : InductiveVal) : MetaM StructureInfo := do
|
def StructureInfo.ofInductiveVal (v : InductiveVal) : MetaM StructureInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
|
@ -263,7 +263,7 @@ def getInstances (className : Name) : MetaM (Array Name) := do
|
||||||
let fn ← mkConstWithFreshMVarLevels className
|
let fn ← mkConstWithFreshMVarLevels className
|
||||||
let (xs, _, _) ← forallMetaTelescopeReducing (← inferType fn)
|
let (xs, _, _) ← forallMetaTelescopeReducing (← inferType fn)
|
||||||
let insts ← SynthInstance.getInstances (mkAppN fn xs)
|
let insts ← SynthInstance.getInstances (mkAppN fn xs)
|
||||||
insts.map Expr.constName!
|
return insts.map Expr.constName!
|
||||||
|
|
||||||
def ClassInfo.ofInductiveVal (v : InductiveVal) : MetaM ClassInfo := do
|
def ClassInfo.ofInductiveVal (v : InductiveVal) : MetaM ClassInfo := do
|
||||||
let sinfo ← StructureInfo.ofInductiveVal v
|
let sinfo ← StructureInfo.ofInductiveVal v
|
||||||
|
@ -279,18 +279,18 @@ def isBlackListed (declName : Name) : MetaM Bool := do
|
||||||
match ←findDeclarationRanges? declName with
|
match ←findDeclarationRanges? declName with
|
||||||
| some _ =>
|
| some _ =>
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
declName.isInternal
|
pure (declName.isInternal)
|
||||||
<||> isAuxRecursor env declName
|
<||> (pure $ isAuxRecursor env declName)
|
||||||
<||> isNoConfusion env declName
|
<||> (pure $ isNoConfusion env declName)
|
||||||
<||> isRec declName
|
<||> isRec declName
|
||||||
<||> isMatcher declName
|
<||> isMatcher declName
|
||||||
-- TODO: Evaluate whether filtering out declarations without range is sensible
|
-- TODO: Evaluate whether filtering out declarations without range is sensible
|
||||||
| none => true
|
| none => pure true
|
||||||
|
|
||||||
-- TODO: Is this actually the best way?
|
-- TODO: Is this actually the best way?
|
||||||
def isProjFn (declName : Name) : MetaM Bool := do
|
def isProjFn (declName : Name) : MetaM Bool := do
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
match declName with
|
return match declName with
|
||||||
| Name.str parent name _ =>
|
| Name.str parent name _ =>
|
||||||
if isStructure env parent then
|
if isStructure env parent then
|
||||||
match getStructureInfo? env parent with
|
match getStructureInfo? env parent with
|
||||||
|
@ -307,34 +307,34 @@ def ofConstant : (Name × ConstantInfo) → MetaM (Option DocInfo) := λ (name,
|
||||||
if (←isBlackListed name) then
|
if (←isBlackListed name) then
|
||||||
return none
|
return none
|
||||||
match info with
|
match info with
|
||||||
| ConstantInfo.axiomInfo i => some $ axiomInfo (←AxiomInfo.ofAxiomVal i)
|
| ConstantInfo.axiomInfo i => pure <| some <| axiomInfo (←AxiomInfo.ofAxiomVal i)
|
||||||
| ConstantInfo.thmInfo i => some $ theoremInfo (←TheoremInfo.ofTheoremVal i)
|
| ConstantInfo.thmInfo i => pure <| some <| theoremInfo (←TheoremInfo.ofTheoremVal i)
|
||||||
| ConstantInfo.opaqueInfo i => some $ opaqueInfo (←OpaqueInfo.ofOpaqueVal i)
|
| ConstantInfo.opaqueInfo i => pure <| some <| opaqueInfo (←OpaqueInfo.ofOpaqueVal i)
|
||||||
| ConstantInfo.defnInfo i =>
|
| ConstantInfo.defnInfo i =>
|
||||||
if ← (isProjFn i.name) then
|
if ← (isProjFn i.name) then
|
||||||
none
|
pure none
|
||||||
else
|
else
|
||||||
let info ← DefinitionInfo.ofDefinitionVal i
|
let info ← DefinitionInfo.ofDefinitionVal i
|
||||||
if (←isInstance i.name) then
|
if (←isInstance i.name) then
|
||||||
some $ instanceInfo info
|
pure <| some <| instanceInfo info
|
||||||
else
|
else
|
||||||
some $ definitionInfo info
|
pure <| some <| definitionInfo info
|
||||||
| ConstantInfo.inductInfo i =>
|
| ConstantInfo.inductInfo i =>
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
if isStructure env i.name then
|
if isStructure env i.name then
|
||||||
if isClass env i.name then
|
if isClass env i.name then
|
||||||
some $ classInfo (←ClassInfo.ofInductiveVal i)
|
pure <| some <| classInfo (←ClassInfo.ofInductiveVal i)
|
||||||
else
|
else
|
||||||
some $ structureInfo (←StructureInfo.ofInductiveVal i)
|
pure <| some <| structureInfo (←StructureInfo.ofInductiveVal i)
|
||||||
else
|
else
|
||||||
if isClass env i.name then
|
if isClass env i.name then
|
||||||
some $ classInductiveInfo (←ClassInductiveInfo.ofInductiveVal i)
|
pure <| some <| classInductiveInfo (←ClassInductiveInfo.ofInductiveVal i)
|
||||||
else
|
else
|
||||||
some $ inductiveInfo (←InductiveInfo.ofInductiveVal i)
|
pure <| some <| inductiveInfo (←InductiveInfo.ofInductiveVal i)
|
||||||
-- we ignore these for now
|
-- we ignore these for now
|
||||||
| ConstantInfo.ctorInfo i => none
|
| ConstantInfo.ctorInfo i => pure none
|
||||||
| ConstantInfo.recInfo i => none
|
| ConstantInfo.recInfo i => pure none
|
||||||
| ConstantInfo.quotInfo i => none
|
| ConstantInfo.quotInfo i => pure none
|
||||||
|
|
||||||
def getName : DocInfo → Name
|
def getName : DocInfo → Name
|
||||||
| axiomInfo i => i.name
|
| axiomInfo i => i.name
|
||||||
|
@ -428,7 +428,7 @@ def process : MetaM AnalyzerResult := do
|
||||||
try
|
try
|
||||||
let analysis := Prod.fst <$> Meta.MetaM.toIO (DocInfo.ofConstant cinfo) { maxHeartbeats := 5000000, options := ⟨[(`pp.tagAppFns, true)]⟩ } { env := env} {} {}
|
let analysis := Prod.fst <$> Meta.MetaM.toIO (DocInfo.ofConstant cinfo) { maxHeartbeats := 5000000, options := ⟨[(`pp.tagAppFns, true)]⟩ } { env := env} {} {}
|
||||||
if let some dinfo ← analysis then
|
if let some dinfo ← analysis then
|
||||||
let some modidx ← env.getModuleIdxFor? dinfo.getName | unreachable!
|
let some modidx := env.getModuleIdxFor? dinfo.getName | unreachable!
|
||||||
let moduleName := env.allImportedModuleNames.get! modidx
|
let moduleName := env.allImportedModuleNames.get! modidx
|
||||||
let module := res.find! moduleName
|
let module := res.find! moduleName
|
||||||
res := res.insert moduleName {module with members := module.members.push dinfo}
|
res := res.insert moduleName {module with members := module.members.push dinfo}
|
||||||
|
@ -440,10 +440,10 @@ def process : MetaM AnalyzerResult := do
|
||||||
-- TODO: This could probably be faster if we did an insertion sort above instead
|
-- TODO: This could probably be faster if we did an insertion sort above instead
|
||||||
for (moduleName, module) in res.toArray do
|
for (moduleName, module) in res.toArray do
|
||||||
res := res.insert moduleName {module with members := module.members.qsort DocInfo.lineOrder}
|
res := res.insert moduleName {module with members := module.members.qsort DocInfo.lineOrder}
|
||||||
let some modIdx ← env.getModuleIdx? moduleName | unreachable!
|
let some modIdx := env.getModuleIdx? moduleName | unreachable!
|
||||||
let moduleData := env.header.moduleData.get! modIdx
|
let moduleData := env.header.moduleData.get! modIdx
|
||||||
for imp in moduleData.imports do
|
for imp in moduleData.imports do
|
||||||
let some importIdx ← env.getModuleIdx? imp.module | unreachable!
|
let some importIdx := env.getModuleIdx? imp.module | unreachable!
|
||||||
adj := adj.set! modIdx (adj.get! modIdx |>.set! importIdx true)
|
adj := adj.set! modIdx (adj.get! modIdx |>.set! importIdx true)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -86,12 +86,12 @@ def translateAttrs (attrs : Array Syntax) : MacroM Syntax := do
|
||||||
as ← match attr with
|
as ← match attr with
|
||||||
| `(jsxAttr| $n:jsxAttrName=$v:jsxAttrVal) =>
|
| `(jsxAttr| $n:jsxAttrName=$v:jsxAttrVal) =>
|
||||||
let n ← match n with
|
let n ← match n with
|
||||||
| `(jsxAttrName| $n:strLit) => n
|
| `(jsxAttrName| $n:strLit) => pure n
|
||||||
| `(jsxAttrName| $n:ident) => quote (toString n.getId)
|
| `(jsxAttrName| $n:ident) => pure $ quote (toString n.getId)
|
||||||
| _ => Macro.throwUnsupported
|
| _ => Macro.throwUnsupported
|
||||||
let v ← match v with
|
let v ← match v with
|
||||||
| `(jsxAttrVal| {$v}) => v
|
| `(jsxAttrVal| {$v}) => pure v
|
||||||
| `(jsxAttrVal| $v:strLit) => v
|
| `(jsxAttrVal| $v:strLit) => pure v
|
||||||
| _ => Macro.throwUnsupported
|
| _ => Macro.throwUnsupported
|
||||||
`(($as).push ($n, ($v : String)))
|
`(($as).push ($n, ($v : String)))
|
||||||
| `(jsxAttr| [$t]) => `($as ++ ($t : Array (String × String)))
|
| `(jsxAttr| [$t]) => `($as ++ ($t : Array (String × String)))
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
leanprover/lean4:nightly-2022-02-04
|
leanprover/lean4:nightly-2022-02-08
|
Loading…
Reference in New Issue