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 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
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly compiler",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.5.67",
7
+ "version": "0.5.68",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly language support",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.5.67",
7
+ "version": "0.5.68",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"