chore: bump toolchain, bye auto pure
parent
00bf10c6f0
commit
d39b14cf7a
|
@ -19,7 +19,7 @@ syntax (name := includeStr) "include_str" str : term
|
||||||
throwError s!"{str} is a directory"
|
throwError s!"{str} is a directory"
|
||||||
else
|
else
|
||||||
let content ← FS.readFile path
|
let content ← FS.readFile path
|
||||||
return mkStrLit content
|
pure $ mkStrLit content
|
||||||
else
|
else
|
||||||
throwError s!"\"{str}\" does not exist as a file"
|
throwError s!"\"{str}\" does not exist as a file"
|
||||||
|
|
||||||
|
|
|
@ -14,10 +14,10 @@ open Lean System Std IO
|
||||||
|
|
||||||
def getLakePath : IO FilePath := do
|
def getLakePath : IO FilePath := do
|
||||||
match (← IO.getEnv "LAKE") with
|
match (← IO.getEnv "LAKE") with
|
||||||
| some path => System.FilePath.mk path
|
| some path => pure $ System.FilePath.mk path
|
||||||
| none =>
|
| none =>
|
||||||
let lakePath := (←findSysroot?) / "bin" / "lake"
|
let lakePath := (←findSysroot?) / "bin" / "lake"
|
||||||
lakePath.withExtension System.FilePath.exeExtension
|
pure $ lakePath.withExtension System.FilePath.exeExtension
|
||||||
|
|
||||||
-- Modified from the LSP Server
|
-- Modified from the LSP Server
|
||||||
def lakeSetupSearchPath (lakePath : System.FilePath) (imports : Array String) : IO Lean.SearchPath := do
|
def lakeSetupSearchPath (lakePath : System.FilePath) (imports : Array String) : IO Lean.SearchPath := do
|
||||||
|
|
|
@ -32,22 +32,22 @@ def getGithubBaseUrl : IO String := do
|
||||||
if url.startsWith "git@" then
|
if url.startsWith "git@" then
|
||||||
url := url.drop 15
|
url := url.drop 15
|
||||||
url := url.dropRight 4
|
url := url.dropRight 4
|
||||||
s!"https://github.com/{url}"
|
pure s!"https://github.com/{url}"
|
||||||
else if url.endsWith ".git" then
|
else if url.endsWith ".git" then
|
||||||
url.dropRight 4
|
pure $ url.dropRight 4
|
||||||
else
|
else
|
||||||
url
|
pure url
|
||||||
|
|
||||||
def getCommit : IO String := do
|
def getCommit : IO String := do
|
||||||
let out ← IO.Process.output {cmd := "git", args := #["rev-parse", "HEAD"]}
|
let out ← IO.Process.output {cmd := "git", args := #["rev-parse", "HEAD"]}
|
||||||
if out.exitCode != 0 then
|
if out.exitCode != 0 then
|
||||||
throw <| IO.userError <| "git exited with code " ++ toString out.exitCode
|
throw <| IO.userError <| "git exited with code " ++ toString out.exitCode
|
||||||
out.stdout.trimRight
|
pure out.stdout.trimRight
|
||||||
|
|
||||||
def sourceLinker : IO (Name → Option DeclarationRange → String) := do
|
def sourceLinker : IO (Name → Option DeclarationRange → String) := do
|
||||||
let baseUrl ← getGithubBaseUrl
|
let baseUrl ← getGithubBaseUrl
|
||||||
let commit ← getCommit
|
let commit ← getCommit
|
||||||
return λ name range =>
|
pure λ name range =>
|
||||||
let parts := name.components.map Name.toString
|
let parts := name.components.map Name.toString
|
||||||
let path := (parts.intersperse "/").foldl (· ++ ·) ""
|
let path := (parts.intersperse "/").foldl (· ++ ·) ""
|
||||||
let r := name.getRoot
|
let r := name.getRoot
|
||||||
|
|
|
@ -25,17 +25,17 @@ def setCurrentName (name : Name) (ctx : SiteContext) := {ctx with currentName :=
|
||||||
abbrev HtmlT := ReaderT SiteContext
|
abbrev HtmlT := ReaderT SiteContext
|
||||||
abbrev HtmlM := HtmlT Id
|
abbrev HtmlM := HtmlT Id
|
||||||
|
|
||||||
def getRoot : HtmlM String := do (←read).root
|
def getRoot : HtmlM String := do pure (←read).root
|
||||||
def getResult : HtmlM AnalyzerResult := do (←read).result
|
def getResult : HtmlM AnalyzerResult := do pure (←read).result
|
||||||
def getCurrentName : HtmlM (Option Name) := do (←read).currentName
|
def getCurrentName : HtmlM (Option Name) := do pure (←read).currentName
|
||||||
def getSourceUrl (module : Name) (range : Option DeclarationRange): HtmlM String := do (←read).sourceLinker module range
|
def getSourceUrl (module : Name) (range : Option DeclarationRange): HtmlM String := do pure $ (←read).sourceLinker module range
|
||||||
|
|
||||||
def templateExtends {α β : Type} (base : α → HtmlM β) (new : HtmlM α) : HtmlM β :=
|
def templateExtends {α β : Type} (base : α → HtmlM β) (new : HtmlM α) : HtmlM β :=
|
||||||
new >>= base
|
new >>= base
|
||||||
|
|
||||||
def moduleNameToLink (n : Name) : HtmlM String := do
|
def moduleNameToLink (n : Name) : HtmlM String := do
|
||||||
let parts := n.components.map Name.toString
|
let parts := n.components.map Name.toString
|
||||||
(←getRoot) ++ (parts.intersperse "/").foldl (· ++ ·) "" ++ ".html"
|
pure $ (←getRoot) ++ (parts.intersperse "/").foldl (· ++ ·) "" ++ ".html"
|
||||||
|
|
||||||
def moduleNameToFile (basePath : FilePath) (n : Name) : FilePath :=
|
def moduleNameToFile (basePath : FilePath) (n : Name) : FilePath :=
|
||||||
let parts := n.components.map Name.toString
|
let parts := n.components.map Name.toString
|
||||||
|
@ -53,7 +53,7 @@ end Static
|
||||||
def declNameToLink (name : Name) : HtmlM String := do
|
def declNameToLink (name : Name) : HtmlM String := do
|
||||||
let res ← getResult
|
let res ← getResult
|
||||||
let module := res.moduleNames[res.name2ModIdx.find! name]
|
let module := res.moduleNames[res.name2ModIdx.find! name]
|
||||||
(←moduleNameToLink module) ++ "#" ++ name.toString
|
pure $ (←moduleNameToLink module) ++ "#" ++ name.toString
|
||||||
|
|
||||||
def splitWhitespaces (s : String) : (String × String × String) := Id.run do
|
def splitWhitespaces (s : String) : (String × String × String) := Id.run do
|
||||||
let front := "".pushn ' ' (s.find (!Char.isWhitespace ·))
|
let front := "".pushn ' ' (s.find (!Char.isWhitespace ·))
|
||||||
|
@ -64,8 +64,8 @@ def splitWhitespaces (s : String) : (String × String × String) := Id.run do
|
||||||
|
|
||||||
partial def infoFormatToHtml (i : CodeWithInfos) : HtmlM (Array Html) := do
|
partial def infoFormatToHtml (i : CodeWithInfos) : HtmlM (Array Html) := do
|
||||||
match i with
|
match i with
|
||||||
| TaggedText.text t => return #[t]
|
| TaggedText.text t => pure #[t]
|
||||||
| TaggedText.append tt => tt.foldlM (λ acc t => do acc ++ (←infoFormatToHtml t)) #[]
|
| TaggedText.append tt => tt.foldlM (λ acc t => do pure $ acc ++ (←infoFormatToHtml t)) #[]
|
||||||
| TaggedText.tag a t =>
|
| TaggedText.tag a t =>
|
||||||
match a.info.val.info with
|
match a.info.val.info with
|
||||||
| Info.ofTermInfo i =>
|
| Info.ofTermInfo i =>
|
||||||
|
@ -75,13 +75,13 @@ partial def infoFormatToHtml (i : CodeWithInfos) : HtmlM (Array Html) := do
|
||||||
| TaggedText.text t =>
|
| TaggedText.text t =>
|
||||||
let (front, t, back) := splitWhitespaces t
|
let (front, t, back) := splitWhitespaces t
|
||||||
let elem := Html.element "a" true #[("href", ←declNameToLink name)] #[t]
|
let elem := Html.element "a" true #[("href", ←declNameToLink name)] #[t]
|
||||||
#[Html.text front, elem, Html.text back]
|
pure #[Html.text front, elem, Html.text back]
|
||||||
| _ =>
|
| _ =>
|
||||||
-- TODO: Is this ever reachable?
|
-- TODO: Is this ever reachable?
|
||||||
#[Html.element "a" true #[("href", ←declNameToLink name)] (←infoFormatToHtml t)]
|
pure #[Html.element "a" true #[("href", ←declNameToLink name)] (←infoFormatToHtml t)]
|
||||||
| _ =>
|
| _ =>
|
||||||
#[Html.element "span" true #[("class", "fn")] (←infoFormatToHtml t)]
|
pure #[Html.element "span" true #[("class", "fn")] (←infoFormatToHtml t)]
|
||||||
| _ => #[Html.element "span" true #[("class", "fn")] (←infoFormatToHtml t)]
|
| _ => pure #[Html.element "span" true #[("class", "fn")] (←infoFormatToHtml t)]
|
||||||
|
|
||||||
end Output
|
end Output
|
||||||
end DocGen4
|
end DocGen4
|
||||||
|
|
|
@ -8,11 +8,12 @@ open scoped DocGen4.Jsx
|
||||||
open Lean
|
open Lean
|
||||||
|
|
||||||
def classInstanceToHtml (name : Name) : HtmlM Html := do
|
def classInstanceToHtml (name : Name) : HtmlM Html := do
|
||||||
<li><a href={←declNameToLink name}>{name.toString}</a></li>
|
pure <li><a href={←declNameToLink name}>{name.toString}</a></li>
|
||||||
|
|
||||||
def classInstancesToHtml (instances : Array Name) : HtmlM Html := do
|
def classInstancesToHtml (instances : Array Name) : HtmlM Html := do
|
||||||
let instancesHtml ← instances.mapM classInstanceToHtml
|
let instancesHtml ← instances.mapM classInstanceToHtml
|
||||||
return <details «class»="instances">
|
pure
|
||||||
|
<details «class»="instances">
|
||||||
<summary>Instances</summary>
|
<summary>Instances</summary>
|
||||||
<ul>
|
<ul>
|
||||||
[instancesHtml]
|
[instancesHtml]
|
||||||
|
@ -20,7 +21,7 @@ def classInstancesToHtml (instances : Array Name) : HtmlM Html := do
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
def classToHtml (i : ClassInfo) : HtmlM (Array Html) := do
|
def classToHtml (i : ClassInfo) : HtmlM (Array Html) := do
|
||||||
(←structureToHtml i.toStructureInfo).push (←classInstancesToHtml i.instances)
|
pure $ (←structureToHtml i.toStructureInfo).push (←classInstancesToHtml i.instances)
|
||||||
|
|
||||||
end Output
|
end Output
|
||||||
end DocGen4
|
end DocGen4
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace DocGen4
|
||||||
namespace Output
|
namespace Output
|
||||||
|
|
||||||
def classInductiveToHtml (i : ClassInductiveInfo) : HtmlM (Array Html) := do
|
def classInductiveToHtml (i : ClassInductiveInfo) : HtmlM (Array Html) := do
|
||||||
(←inductiveToHtml i.toInductiveInfo).push (←classInstancesToHtml i.instances)
|
pure $ (←inductiveToHtml i.toInductiveInfo).push (←classInstancesToHtml i.instances)
|
||||||
|
|
||||||
end Output
|
end Output
|
||||||
end DocGen4
|
end DocGen4
|
||||||
|
|
|
@ -7,26 +7,27 @@ open scoped DocGen4.Jsx
|
||||||
open Lean Widget
|
open Lean Widget
|
||||||
|
|
||||||
def equationToHtml (c : CodeWithInfos) : HtmlM Html := do
|
def equationToHtml (c : CodeWithInfos) : HtmlM Html := do
|
||||||
<li «class»="equation">[←infoFormatToHtml c]</li>
|
pure <li «class»="equation">[←infoFormatToHtml c]</li>
|
||||||
|
|
||||||
def equationsToHtml (i : DefinitionInfo) : HtmlM (Option Html) := do
|
def equationsToHtml (i : DefinitionInfo) : HtmlM (Option Html) := do
|
||||||
if let some eqs ← i.equations then
|
if let some eqs := i.equations then
|
||||||
let equationsHtml ← eqs.mapM equationToHtml
|
let equationsHtml ← eqs.mapM equationToHtml
|
||||||
return <details>
|
pure
|
||||||
|
<details>
|
||||||
<summary>Equations</summary>
|
<summary>Equations</summary>
|
||||||
<ul «class»="equations">
|
<ul «class»="equations">
|
||||||
[equationsHtml]
|
[equationsHtml]
|
||||||
</ul>
|
</ul>
|
||||||
</details>
|
</details>
|
||||||
else
|
else
|
||||||
return none
|
pure none
|
||||||
|
|
||||||
def definitionToHtml (i : DefinitionInfo) : HtmlM (Array Html) := do
|
def definitionToHtml (i : DefinitionInfo) : HtmlM (Array Html) := do
|
||||||
let equationsHtml ← equationsToHtml i
|
let equationsHtml ← equationsToHtml i
|
||||||
if let some equationsHtml ← equationsHtml then
|
if let some equationsHtml := equationsHtml then
|
||||||
#[equationsHtml]
|
pure #[equationsHtml]
|
||||||
else
|
else
|
||||||
#[]
|
pure #[]
|
||||||
|
|
||||||
end Output
|
end Output
|
||||||
end DocGen4
|
end DocGen4
|
||||||
|
|
|
@ -11,7 +11,7 @@ namespace Output
|
||||||
|
|
||||||
open scoped DocGen4.Jsx
|
open scoped DocGen4.Jsx
|
||||||
|
|
||||||
def index : HtmlM Html := do templateExtends (baseHtml "Index") $
|
def index : HtmlM Html := do templateExtends (baseHtml "Index") $ pure $
|
||||||
<main>
|
<main>
|
||||||
<a id="top"></a>
|
<a id="top"></a>
|
||||||
<h1> Welcome to the documentation page </h1>
|
<h1> Welcome to the documentation page </h1>
|
||||||
|
|
|
@ -8,10 +8,10 @@ open scoped DocGen4.Jsx
|
||||||
def ctorToHtml (i : NameInfo) : HtmlM Html := do
|
def ctorToHtml (i : NameInfo) : HtmlM Html := do
|
||||||
let shortName := i.name.components'.head!.toString
|
let shortName := i.name.components'.head!.toString
|
||||||
let name := i.name.toString
|
let name := i.name.toString
|
||||||
return <li «class»="constructor" id={name}>{shortName} : [←infoFormatToHtml i.type]</li>
|
pure <li «class»="constructor" id={name}>{shortName} : [←infoFormatToHtml i.type]</li>
|
||||||
|
|
||||||
def inductiveToHtml (i : InductiveInfo) : HtmlM (Array Html) :=
|
def inductiveToHtml (i : InductiveInfo) : HtmlM (Array Html) := do
|
||||||
return #[<ul "class"="constructors">[← i.ctors.toArray.mapM ctorToHtml]</ul>]
|
pure #[<ul "class"="constructors">[← i.ctors.toArray.mapM ctorToHtml]</ul>]
|
||||||
|
|
||||||
end Output
|
end Output
|
||||||
end DocGen4
|
end DocGen4
|
||||||
|
|
|
@ -31,9 +31,9 @@ def argToHtml (arg : Arg) : HtmlM Html := do
|
||||||
let inner := Html.element "span" true #[("class", "fn")] nodes
|
let inner := Html.element "span" true #[("class", "fn")] nodes
|
||||||
let html := Html.element "span" false #[("class", "decl_args")] #[inner]
|
let html := Html.element "span" false #[("class", "decl_args")] #[inner]
|
||||||
if implicit then
|
if implicit then
|
||||||
<span «class»="impl_arg">{html}</span>
|
pure <span «class»="impl_arg">{html}</span>
|
||||||
else
|
else
|
||||||
html
|
pure html
|
||||||
|
|
||||||
def structureInfoHeader (s : StructureInfo) : HtmlM (Array Html) := do
|
def structureInfoHeader (s : StructureInfo) : HtmlM (Array Html) := do
|
||||||
let mut nodes := #[]
|
let mut nodes := #[]
|
||||||
|
@ -46,7 +46,7 @@ def structureInfoHeader (s : StructureInfo) : HtmlM (Array Html) := do
|
||||||
let html:= Html.element "span" false #[("class", "decl_parent")] #[inner]
|
let html:= Html.element "span" false #[("class", "decl_parent")] #[inner]
|
||||||
parents := parents.push html
|
parents := parents.push html
|
||||||
nodes := nodes.append (parents.toList.intersperse (Html.text ", ")).toArray
|
nodes := nodes.append (parents.toList.intersperse (Html.text ", ")).toArray
|
||||||
nodes
|
pure nodes
|
||||||
|
|
||||||
def docInfoHeader (doc : DocInfo) : HtmlM Html := do
|
def docInfoHeader (doc : DocInfo) : HtmlM Html := do
|
||||||
let mut nodes := #[]
|
let mut nodes := #[]
|
||||||
|
@ -69,7 +69,7 @@ def docInfoHeader (doc : DocInfo) : HtmlM Html := do
|
||||||
|
|
||||||
nodes := nodes.push <span «class»="decl_args">:</span>
|
nodes := nodes.push <span «class»="decl_args">:</span>
|
||||||
nodes := nodes.push $ Html.element "div" true #[("class", "decl_type")] (←infoFormatToHtml doc.getType)
|
nodes := nodes.push $ Html.element "div" true #[("class", "decl_type")] (←infoFormatToHtml doc.getType)
|
||||||
return <div «class»="decl_header"> [nodes] </div>
|
pure <div «class»="decl_header"> [nodes] </div>
|
||||||
|
|
||||||
def docInfoToHtml (module : Name) (doc : DocInfo) : HtmlM Html := do
|
def docInfoToHtml (module : Name) (doc : DocInfo) : HtmlM Html := do
|
||||||
let doc_html ← match doc with
|
let doc_html ← match doc with
|
||||||
|
@ -79,16 +79,17 @@ def docInfoToHtml (module : Name) (doc : DocInfo) : HtmlM Html := do
|
||||||
| DocInfo.definitionInfo i => definitionToHtml i
|
| DocInfo.definitionInfo i => definitionToHtml i
|
||||||
| DocInfo.instanceInfo i => instanceToHtml i
|
| DocInfo.instanceInfo i => instanceToHtml i
|
||||||
| DocInfo.classInductiveInfo i => classInductiveToHtml i
|
| DocInfo.classInductiveInfo i => classInductiveToHtml i
|
||||||
| _ => #[]
|
| _ => pure #[]
|
||||||
|
|
||||||
return <div «class»="decl" id={doc.getName.toString}>
|
pure
|
||||||
|
<div «class»="decl" id={doc.getName.toString}>
|
||||||
<div «class»={doc.getKind}>
|
<div «class»={doc.getKind}>
|
||||||
<div «class»="gh_link">
|
<div «class»="gh_link">
|
||||||
<a href={←getSourceUrl module doc.getDeclarationRange}>source</a>
|
<a href={←getSourceUrl module doc.getDeclarationRange}>source</a>
|
||||||
</div>
|
</div>
|
||||||
-- TODO: Attributes
|
-- TODO: Attributes
|
||||||
{←docInfoHeader doc}
|
{←docInfoHeader doc}
|
||||||
[←doc_html]
|
[doc_html]
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -99,38 +100,39 @@ def declarationToNavLink (module : Name) : Html :=
|
||||||
|
|
||||||
-- TODO: Similar functions are used all over the place, we should dedup them
|
-- TODO: Similar functions are used all over the place, we should dedup them
|
||||||
def moduleToNavLink (module : Name) : HtmlM Html := do
|
def moduleToNavLink (module : Name) : HtmlM Html := do
|
||||||
<a href={←moduleNameToLink module}>{module.toString}</a>
|
pure <a href={←moduleNameToLink module}>{module.toString}</a>
|
||||||
|
|
||||||
def getImports (module : Name) : HtmlM (Array Name) := do
|
def getImports (module : Name) : HtmlM (Array Name) := do
|
||||||
let res ← getResult
|
let res ← getResult
|
||||||
let some idx ← res.moduleNames.findIdx? (. == module) | unreachable!
|
let some idx := res.moduleNames.findIdx? (. == module) | unreachable!
|
||||||
let adj := res.importAdj.get! idx
|
let adj := res.importAdj.get! idx
|
||||||
let mut imports := #[]
|
let mut imports := #[]
|
||||||
for i in [:adj.size] do
|
for i in [:adj.size] do
|
||||||
if adj.get! i then
|
if adj.get! i then
|
||||||
imports := imports.push (res.moduleNames.get! i)
|
imports := imports.push (res.moduleNames.get! i)
|
||||||
imports
|
pure imports
|
||||||
|
|
||||||
def getImportedBy (module : Name) : HtmlM (Array Name) := do
|
def getImportedBy (module : Name) : HtmlM (Array Name) := do
|
||||||
let res ← getResult
|
let res ← getResult
|
||||||
let some idx ← res.moduleNames.findIdx? (. == module) | unreachable!
|
let some idx := res.moduleNames.findIdx? (. == module) | unreachable!
|
||||||
let adj := res.importAdj
|
let adj := res.importAdj
|
||||||
let mut impBy := #[]
|
let mut impBy := #[]
|
||||||
for i in [:adj.size] do
|
for i in [:adj.size] do
|
||||||
if adj.get! i |>.get! idx then
|
if adj.get! i |>.get! idx then
|
||||||
impBy := impBy.push (res.moduleNames.get! i)
|
impBy := impBy.push (res.moduleNames.get! i)
|
||||||
impBy
|
pure impBy
|
||||||
|
|
||||||
def importedByHtml (moduleName : Name) : HtmlM (Array Html) := do
|
def importedByHtml (moduleName : Name) : HtmlM (Array Html) := do
|
||||||
let imports := (←getImportedBy moduleName) |>.qsort Name.lt
|
let imports := (←getImportedBy moduleName) |>.qsort Name.lt
|
||||||
imports.mapM (λ i => do <li>{←moduleToNavLink i}</li>)
|
imports.mapM (λ i => do pure <li>{←moduleToNavLink i}</li>)
|
||||||
|
|
||||||
|
|
||||||
def importsHtml (moduleName : Name) : HtmlM (Array Html) := do
|
def importsHtml (moduleName : Name) : HtmlM (Array Html) := do
|
||||||
let imports := (←getImports moduleName) |>.qsort Name.lt
|
let imports := (←getImports moduleName) |>.qsort Name.lt
|
||||||
imports.mapM (λ i => do <li>{←moduleToNavLink i}</li>)
|
imports.mapM (λ i => do pure <li>{←moduleToNavLink i}</li>)
|
||||||
|
|
||||||
def internalNav (members : Array Name) (moduleName : Name) : HtmlM Html := do
|
def internalNav (members : Array Name) (moduleName : Name) : HtmlM Html := do
|
||||||
|
pure
|
||||||
<nav «class»="internal_nav">
|
<nav «class»="internal_nav">
|
||||||
<h3><a «class»="break_within" href="#top">{moduleName.toString}</a></h3>
|
<h3><a «class»="break_within" href="#top">{moduleName.toString}</a></h3>
|
||||||
<p «class»="gh_nav_link"><a href={←getSourceUrl moduleName none}>source</a></p>
|
<p «class»="gh_nav_link"><a href={←getSourceUrl moduleName none}>source</a></p>
|
||||||
|
@ -153,7 +155,7 @@ def internalNav (members : Array Name) (moduleName : Name) : HtmlM Html := do
|
||||||
|
|
||||||
def moduleToHtml (module : Module) : HtmlM Html := withReader (setCurrentName module.name) do
|
def moduleToHtml (module : Module) : HtmlM Html := withReader (setCurrentName module.name) do
|
||||||
let docInfos ← module.members.mapM (λ i => docInfoToHtml module.name i)
|
let docInfos ← module.members.mapM (λ i => docInfoToHtml module.name i)
|
||||||
templateExtends (baseHtmlArray module.name.toString) $ #[
|
templateExtends (baseHtmlArray module.name.toString) $ pure #[
|
||||||
←internalNav (module.members.map DocInfo.getName) module.name,
|
←internalNav (module.members.map DocInfo.getName) module.name,
|
||||||
Html.element "main" false #[] docInfos
|
Html.element "main" false #[] docInfos
|
||||||
]
|
]
|
||||||
|
|
|
@ -13,8 +13,8 @@ namespace Output
|
||||||
open Lean
|
open Lean
|
||||||
open scoped DocGen4.Jsx
|
open scoped DocGen4.Jsx
|
||||||
|
|
||||||
def moduleListFile (file : Name) : HtmlM Html :=
|
def moduleListFile (file : Name) : HtmlM Html := do
|
||||||
return <div "class"="nav_link" [if (← getCurrentName) == file then #[("visible", "")] else #[]]>
|
pure <div "class"="nav_link" [if (← getCurrentName) == file then #[("visible", "")] else #[]]>
|
||||||
<a href={← moduleNameToLink file}>{file.toString}</a>
|
<a href={← moduleNameToLink file}>{file.toString}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -25,8 +25,9 @@ partial def moduleListDir (h : Hierarchy) : HtmlM Html := do
|
||||||
let dirNodes ← (dirs.mapM moduleListDir)
|
let dirNodes ← (dirs.mapM moduleListDir)
|
||||||
let fileNodes ← (files.mapM moduleListFile)
|
let fileNodes ← (files.mapM moduleListFile)
|
||||||
let moduleLink ← moduleNameToLink h.getName
|
let moduleLink ← moduleNameToLink h.getName
|
||||||
return <details "class"="nav_sect" "data-path"={moduleLink}
|
pure
|
||||||
[if (← getCurrentName).any (h.getName.isPrefixOf ·) then #[("open", "")] else #[]]>
|
<details "class"="nav_sect" "data-path"={moduleLink}
|
||||||
|
[if (←getCurrentName).any (h.getName.isPrefixOf ·) then #[("open", "")] else #[]]>
|
||||||
<summary>{h.getName.toString}</summary>
|
<summary>{h.getName.toString}</summary>
|
||||||
[dirNodes]
|
[dirNodes]
|
||||||
[fileNodes]
|
[fileNodes]
|
||||||
|
@ -37,9 +38,10 @@ def moduleList : HtmlM Html := do
|
||||||
let mut list := Array.empty
|
let mut list := Array.empty
|
||||||
for (n, cs) in hierarchy.getChildren do
|
for (n, cs) in hierarchy.getChildren do
|
||||||
list := list.push $ ←moduleListDir cs
|
list := list.push $ ←moduleListDir cs
|
||||||
return <div "class"="module_list">[list]</div>
|
pure <div "class"="module_list">[list]</div>
|
||||||
|
|
||||||
def navbar : HtmlM Html := do
|
def navbar : HtmlM Html := do
|
||||||
|
pure
|
||||||
<nav «class»="nav">
|
<nav «class»="nav">
|
||||||
<h3>General documentation</h3>
|
<h3>General documentation</h3>
|
||||||
<div «class»="nav_link"><a href={s!"{←getRoot}"}>index</a></div>
|
<div «class»="nav_link"><a href={s!"{←getRoot}"}>index</a></div>
|
||||||
|
|
|
@ -11,7 +11,7 @@ namespace Output
|
||||||
|
|
||||||
open scoped DocGen4.Jsx
|
open scoped DocGen4.Jsx
|
||||||
|
|
||||||
def notFound : HtmlM Html := do templateExtends (baseHtml "404") $
|
def notFound : HtmlM Html := do templateExtends (baseHtml "404") $ pure $
|
||||||
<main>
|
<main>
|
||||||
<h1>404 Not Found</h1>
|
<h1>404 Not Found</h1>
|
||||||
<p> Unfortunately, the page you were looking for is no longer here. </p>
|
<p> Unfortunately, the page you were looking for is no longer here. </p>
|
||||||
|
|
|
@ -9,16 +9,18 @@ open Lean
|
||||||
def fieldToHtml (f : NameInfo) : HtmlM Html := do
|
def fieldToHtml (f : NameInfo) : HtmlM Html := do
|
||||||
let shortName := f.name.components'.head!.toString
|
let shortName := f.name.components'.head!.toString
|
||||||
let name := f.name.toString
|
let name := f.name.toString
|
||||||
return <li «class»="structure_field" id={name}>{s!"{shortName} "} : [←infoFormatToHtml f.type]</li>
|
pure <li «class»="structure_field" id={name}>{s!"{shortName} "} : [←infoFormatToHtml f.type]</li>
|
||||||
|
|
||||||
def structureToHtml (i : StructureInfo) : HtmlM (Array Html) := do
|
def structureToHtml (i : StructureInfo) : HtmlM (Array Html) := do
|
||||||
if Name.isSuffixOf `mk i.ctor.name then
|
if Name.isSuffixOf `mk i.ctor.name then
|
||||||
#[<ul «class»="structure_fields" id={i.ctor.name.toString}>
|
pure #[
|
||||||
|
<ul «class»="structure_fields" id={i.ctor.name.toString}>
|
||||||
[←i.fieldInfo.mapM fieldToHtml]
|
[←i.fieldInfo.mapM fieldToHtml]
|
||||||
</ul>]
|
</ul>]
|
||||||
else
|
else
|
||||||
let ctorShortName := i.ctor.name.components'.head!.toString
|
let ctorShortName := i.ctor.name.components'.head!.toString
|
||||||
#[<ul «class»="structure_ext">
|
pure #[
|
||||||
|
<ul «class»="structure_ext">
|
||||||
<li id={i.ctor.name.toString} «class»="structure_ext_ctor">{s!"{ctorShortName} "} :: (</li>
|
<li id={i.ctor.name.toString} «class»="structure_ext_ctor">{s!"{ctorShortName} "} :: (</li>
|
||||||
<ul «class»="structure_ext_fields">
|
<ul «class»="structure_ext_fields">
|
||||||
[←i.fieldInfo.mapM fieldToHtml]
|
[←i.fieldInfo.mapM fieldToHtml]
|
||||||
|
|
|
@ -12,6 +12,7 @@ namespace Output
|
||||||
open scoped DocGen4.Jsx
|
open scoped DocGen4.Jsx
|
||||||
|
|
||||||
def baseHtmlArray (title : String) (site : Array Html) : HtmlM Html := do
|
def baseHtmlArray (title : String) (site : Array Html) : HtmlM Html := do
|
||||||
|
pure
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" href={s!"{←getRoot}style.css"}/>
|
<link rel="stylesheet" href={s!"{←getRoot}style.css"}/>
|
||||||
|
|
|
@ -140,7 +140,7 @@ def prettyPrintTerm (expr : Expr) : MetaM CodeWithInfos := do
|
||||||
openDecls := ← getOpenDecls
|
openDecls := ← getOpenDecls
|
||||||
fileMap := default
|
fileMap := default
|
||||||
}
|
}
|
||||||
return tagExprInfos ctx infos tt
|
pure $ 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
|
||||||
|
@ -150,16 +150,16 @@ def Info.ofConstantVal (v : ConstantVal) : MetaM Info := do
|
||||||
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
|
||||||
| some range => return Info.mk ⟨v.name, type⟩ args doc range.range
|
| some range => pure $ Info.mk ⟨v.name, type⟩ args doc range.range
|
||||||
| none => panic! s!"{v.name} is a declaration without position"
|
| none => panic! s!"{v.name} is a declaration without position"
|
||||||
|
|
||||||
def AxiomInfo.ofAxiomVal (v : AxiomVal) : MetaM AxiomInfo := do
|
def AxiomInfo.ofAxiomVal (v : AxiomVal) : MetaM AxiomInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
return AxiomInfo.mk info v.isUnsafe
|
pure $ AxiomInfo.mk info v.isUnsafe
|
||||||
|
|
||||||
def TheoremInfo.ofTheoremVal (v : TheoremVal) : MetaM TheoremInfo := do
|
def TheoremInfo.ofTheoremVal (v : TheoremVal) : MetaM TheoremInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
return TheoremInfo.mk info
|
pure $ TheoremInfo.mk info
|
||||||
|
|
||||||
def OpaqueInfo.ofOpaqueVal (v : OpaqueVal) : MetaM OpaqueInfo := do
|
def OpaqueInfo.ofOpaqueVal (v : OpaqueVal) : MetaM OpaqueInfo := do
|
||||||
let info ← Info.ofConstantVal v.toConstantVal
|
let info ← Info.ofConstantVal v.toConstantVal
|
||||||
|
@ -167,13 +167,13 @@ def OpaqueInfo.ofOpaqueVal (v : OpaqueVal) : MetaM OpaqueInfo := do
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
let isPartial := env.find? (Compiler.mkUnsafeRecName v.name) |>.isSome
|
let isPartial := env.find? (Compiler.mkUnsafeRecName v.name) |>.isSome
|
||||||
if isPartial then
|
if isPartial then
|
||||||
return OpaqueInfo.mk info t DefinitionSafety.partial
|
pure $ OpaqueInfo.mk info t DefinitionSafety.partial
|
||||||
else
|
else
|
||||||
let safety := if v.isUnsafe then DefinitionSafety.unsafe else DefinitionSafety.safe
|
let safety := if v.isUnsafe then DefinitionSafety.unsafe else DefinitionSafety.safe
|
||||||
return OpaqueInfo.mk info t safety
|
pure $ OpaqueInfo.mk info t safety
|
||||||
|
|
||||||
def isInstance (declName : Name) : MetaM Bool := do
|
def isInstance (declName : Name) : MetaM Bool := do
|
||||||
return (instanceExtension.getState (←getEnv)).instanceNames.contains declName
|
pure $ (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
|
||||||
|
@ -213,7 +213,7 @@ def DefinitionInfo.ofDefinitionVal (v : DefinitionVal) : MetaM DefinitionInfo :=
|
||||||
pure $ 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
|
pure $ DefinitionInfo.mk info isUnsafe v.hints none
|
||||||
|
|
||||||
def getConstructorType (ctor : Name) : MetaM CodeWithInfos := do
|
def getConstructorType (ctor : Name) : MetaM CodeWithInfos := do
|
||||||
let env ← getEnv
|
let env ← getEnv
|
||||||
|
@ -225,7 +225,7 @@ 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 pure $ 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
|
pure $ 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)) :=
|
||||||
match type, n with
|
match type, n with
|
||||||
|
@ -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}
|
||||||
return field_infos
|
pure $ 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
|
||||||
|
@ -254,24 +254,24 @@ def StructureInfo.ofInductiveVal (v : InductiveVal) : MetaM StructureInfo := do
|
||||||
match getStructureInfo? env v.name with
|
match getStructureInfo? env v.name with
|
||||||
| some i =>
|
| some i =>
|
||||||
if i.fieldNames.size - parents.size > 0 then
|
if i.fieldNames.size - parents.size > 0 then
|
||||||
return StructureInfo.mk info (←getFieldTypes v.name ctor parents.size) parents ⟨ctor.name, ctorType⟩
|
pure $ StructureInfo.mk info (←getFieldTypes v.name ctor parents.size) parents ⟨ctor.name, ctorType⟩
|
||||||
else
|
else
|
||||||
return StructureInfo.mk info #[] parents ⟨ctor.name, ctorType⟩
|
pure $ StructureInfo.mk info #[] parents ⟨ctor.name, ctorType⟩
|
||||||
| none => panic! s!"{v.name} is not a structure"
|
| none => panic! s!"{v.name} is not a structure"
|
||||||
|
|
||||||
def getInstances (className : Name) : MetaM (Array Name) := do
|
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)
|
||||||
return insts.map Expr.constName!
|
pure $ 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
|
||||||
return ClassInfo.mk sinfo (←getInstances v.name)
|
pure $ ClassInfo.mk sinfo (←getInstances v.name)
|
||||||
|
|
||||||
def ClassInductiveInfo.ofInductiveVal (v : InductiveVal) : MetaM ClassInductiveInfo := do
|
def ClassInductiveInfo.ofInductiveVal (v : InductiveVal) : MetaM ClassInductiveInfo := do
|
||||||
let info ← InductiveInfo.ofInductiveVal v
|
let info ← InductiveInfo.ofInductiveVal v
|
||||||
return ClassInductiveInfo.mk info (←getInstances v.name)
|
pure $ ClassInductiveInfo.mk info (←getInstances v.name)
|
||||||
|
|
||||||
namespace DocInfo
|
namespace DocInfo
|
||||||
|
|
||||||
|
@ -290,18 +290,18 @@ def isBlackListed (declName : Name) : MetaM Bool := do
|
||||||
-- 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
|
||||||
return match declName with
|
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
|
||||||
| some i =>
|
| some i =>
|
||||||
match i.fieldNames.find? (· == name) with
|
match i.fieldNames.find? (· == name) with
|
||||||
| some _ => true
|
| some _ => pure true
|
||||||
| none => false
|
| none => pure false
|
||||||
| none => panic! s!"{parent} is not a structure"
|
| none => panic! s!"{parent} is not a structure"
|
||||||
else
|
else
|
||||||
false
|
pure false
|
||||||
| _ => false
|
| _ => pure false
|
||||||
|
|
||||||
def ofConstant : (Name × ConstantInfo) → MetaM (Option DocInfo) := λ (name, info) => do
|
def ofConstant : (Name × ConstantInfo) → MetaM (Option DocInfo) := λ (name, info) => do
|
||||||
if (←isBlackListed name) then
|
if (←isBlackListed name) then
|
||||||
|
@ -446,7 +446,7 @@ def process : MetaM AnalyzerResult := 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 {
|
pure {
|
||||||
name2ModIdx := env.const2ModIdx,
|
name2ModIdx := env.const2ModIdx,
|
||||||
moduleNames := env.header.moduleNames,
|
moduleNames := env.header.moduleNames,
|
||||||
moduleInfo := res,
|
moduleInfo := res,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
leanprover/lean4:nightly-2022-02-08
|
leanprover/lean4:nightly-2022-02-11
|
||||||
|
|
Loading…
Reference in New Issue