@nudojs/lsp 1.1.3 → 1.1.4
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/dist/index.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -241585,7 +241585,7 @@ function $get(o, key, opts) {
|
|
|
241585
241585
|
return arrayMethodAbs(key === "join" ? "join" : key);
|
|
241586
241586
|
}
|
|
241587
241587
|
if (o.shape.k !== "prim" && (ARRAY_PROTO_METHOD_NAMES.has(key) || key === "@@iterator")) {
|
|
241588
|
-
return
|
|
241588
|
+
return { shape: { k: "fn", params: [] }, conf: "path" };
|
|
241589
241589
|
}
|
|
241590
241590
|
return objectProtoMethodAbs(key);
|
|
241591
241591
|
}
|
package/dist/server.js
CHANGED
|
@@ -251985,7 +251985,7 @@ function $get(o, key, opts) {
|
|
|
251985
251985
|
return arrayMethodAbs(key === "join" ? "join" : key);
|
|
251986
251986
|
}
|
|
251987
251987
|
if (o.shape.k !== "prim" && (ARRAY_PROTO_METHOD_NAMES.has(key) || key === "@@iterator")) {
|
|
251988
|
-
return
|
|
251988
|
+
return { shape: { k: "fn", params: [] }, conf: "path" };
|
|
251989
251989
|
}
|
|
251990
251990
|
return objectProtoMethodAbs(key);
|
|
251991
251991
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nudojs/lsp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20"
|
|
6
6
|
},
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"registry": "https://registry.npmjs.org"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@nudojs/service": "1.1.
|
|
53
|
-
"@nudojs/core": "1.1.
|
|
54
|
-
"@nudojs/parser": "1.1.
|
|
52
|
+
"@nudojs/service": "1.1.4",
|
|
53
|
+
"@nudojs/core": "1.1.4",
|
|
54
|
+
"@nudojs/parser": "1.1.4",
|
|
55
55
|
"@babel/traverse": "^8.0.6",
|
|
56
56
|
"@babel/types": "^8.0.6",
|
|
57
57
|
"vscode-languageserver": "^10.1.2",
|