firefly-compiler 0.5.67 → 0.5.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lsp/Handler.ff +1 -1
- package/package.json +1 -1
- package/vscode/package.json +1 -1
package/lsp/Handler.ff
CHANGED
|
@@ -76,6 +76,7 @@ extend self: Handler {
|
|
|
76
76
|
let diagnostics = self.handleFocusDiagnostic(system, parameters, version)
|
|
77
77
|
[Pair("textDocument/publishDiagnostics", diagnostics)]
|
|
78
78
|
| "custom/focusDocument" =>
|
|
79
|
+
self.importSymbolsCache = Pair("", [])
|
|
79
80
|
let diagnostics = self.handleFocusDiagnostic(system, parameters, version)
|
|
80
81
|
[Pair("textDocument/publishDiagnostics", diagnostics)]
|
|
81
82
|
| "workspace/didRenameFiles" =>
|
|
@@ -240,7 +241,6 @@ extend self: Handler {
|
|
|
240
241
|
}*/
|
|
241
242
|
|
|
242
243
|
handleFocusDiagnostic(system: NodeSystem, parameters: Map[String, Json], version: Int): Json {
|
|
243
|
-
self.importSymbolsCache = Pair("", [])
|
|
244
244
|
let js = system.js()
|
|
245
245
|
let uri = parameters.grab("textDocument").field("uri").grabString()
|
|
246
246
|
let path = system.pathFromUrl(uri)
|
package/package.json
CHANGED