@constela/language-server 0.1.14 → 0.1.16

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -307,7 +307,7 @@ var EXPR_DOCS = {
307
307
  description: "Validity expression - gets form element validation state"
308
308
  },
309
309
  call: {
310
- signature: '{ "expr": "call", "target": Expression, "method": string, "args"?: Expression[] }',
310
+ signature: '{ "expr": "call", "target": Expression | null, "method": string, "args"?: Expression[] }',
311
311
  description: "Call expression - calls a method on a target"
312
312
  },
313
313
  lambda: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/language-server",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Language Server Protocol implementation for Constela DSL",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23,8 +23,8 @@
23
23
  "vscode-languageserver-textdocument": "^1.0.12",
24
24
  "vscode-jsonrpc": "^8.2.1",
25
25
  "jsonc-parser": "^3.3.1",
26
- "@constela/compiler": "0.15.4",
27
- "@constela/core": "0.17.4"
26
+ "@constela/core": "0.18.0",
27
+ "@constela/compiler": "0.15.6"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "^20.10.0",