File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -96,8 +96,13 @@ def shouldExport (n : Name) : Bool :=
96
96
-- libleanshared to avoid Windows symbol limit
97
97
!(`Lean.Compiler.LCNF).isPrefixOf n &&
98
98
!(`Lean.IR).isPrefixOf n &&
99
- -- Lean.Server.findModuleRefs is used in Verso
100
- (!(`Lean.Server).isPrefixOf n || n == `Lean.Server.findModuleRefs)
99
+ -- Lean.Server.findModuleRefs is used in SubVerso, and the contents of RequestM are used by the
100
+ -- full Verso as well as anything else that extends the LSP server.
101
+ (!(`Lean.Server.Watchdog).isPrefixOf n) &&
102
+ (!(`Lean.Server.ImportCompletion).isPrefixOf n) &&
103
+ (!(`Lean.Server.Completion).isPrefixOf n)
104
+
105
+
101
106
102
107
def emitFnDeclAux (decl : Decl) (cppBaseName : String) (isExternal : Bool) : M Unit := do
103
108
let ps := decl.params
You can’t perform that action at this time.
0 commit comments