persist errors in modules

This commit is contained in:
2026-02-13 09:58:09 -08:00
parent dcf162684e
commit 4ec199b064
3 changed files with 6 additions and 4 deletions

View File

@@ -59,6 +59,7 @@ function runChange() {
const end = +new Date()
connection.sendDiagnostics({uri,diagnostics})
console.log('CHECK', doc.uri, 'in', end-start);
console.log("GOT\n",JSON.stringify(diagnostics, null, ' '))
running = undefined
// If we just sent one, it seems that we need to give vscode some time to send the rest
// Otherwise, for Elab.newt, we hit 1.8s for each character typed.

View File

@@ -21,7 +21,7 @@ addPrimitives = do
processDecl primNS (PType emptyFC "Char" Nothing)
setDef (QN primNS "PiType") emptyFC (Erased emptyFC) (PrimFn "(h0, h1) => ({ tag: \"PiType\", h0, h1 });" (S (S Z)) Nil) Nil
top <- getTop
let mod = MkModCtx "" top.defs (MC emptyMap Nil 0 CheckAll) top.ops Nil
let mod = MkModCtx "" top.defs (MC emptyMap Nil 0 CheckAll) top.ops Nil top.errors
let modules = updateMap primNS mod top.modules
modifyTop [ modules := modules
; imported := primNS :: Nil
@@ -125,7 +125,7 @@ processModule importFC repo stk modns = do
-- update modules with result, leave the rest of context in case this is top file
top <- getTop
let mod = MkModCtx src top.defs top.metaCtx top.ops importNames
let mod = MkModCtx src top.defs top.metaCtx top.ops importNames top.errors
let modules = updateMap modns mod top.modules
modifyTop [modules := modules]

View File

@@ -403,6 +403,7 @@ record ModContext where
-- longer term maybe drop this, put the operator decls in ctxDefs and collect them on import
ctxOps : Operators
modDeps : List (List String)
modErrors : List Error
-- Top level context.
-- Most of the reason this is separate is to have a different type
@@ -413,7 +414,7 @@ record ModContext where
-- A placeholder while walking through dependencies of a module
emptyModCtx : String ModContext
emptyModCtx csum = MkModCtx csum emptyMap (MC emptyMap Nil 0 NoCheck) emptyMap Nil
emptyModCtx csum = MkModCtx csum emptyMap (MC emptyMap Nil 0 NoCheck) emptyMap Nil Nil
HintTable : U
HintTable = SortedMap QName (List (QName × Tm))