diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-07-11 18:12:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-11 18:12:26 -0700 |
commit | 511c48a03adee54aaadbefdeb2d2d521f6a45843 (patch) | |
tree | 817acc25f4c598fdc985f306f29fb3c318f87c55 /cli/tests/integration/lsp_tests.rs | |
parent | eea6000ef6e30e6684995619e630d3beb7d7484b (diff) |
Revert "Remove unstable native plugins (#10908)"
This reverts commit 7dd4090c2a3dc0222fd6ff611eeb2bd69cd28224.
Diffstat (limited to 'cli/tests/integration/lsp_tests.rs')
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs index dcfd787fb..81eb64b7a 100644 --- a/cli/tests/integration/lsp_tests.rs +++ b/cli/tests/integration/lsp_tests.rs @@ -470,7 +470,7 @@ fn lsp_hover_unstable_enabled() { "uri": "file:///a/file.ts", "languageId": "typescript", "version": 1, - "text": "console.log(Deno.ppid);\n" + "text": "console.log(Deno.openPlugin);\n" } }), ); @@ -495,9 +495,9 @@ fn lsp_hover_unstable_enabled() { "contents":[ { "language":"typescript", - "value":"const Deno.ppid: number" + "value":"function Deno.openPlugin(filename: string): number" }, - "The pid of the current process's parent." + "**UNSTABLE**: new API, yet to be vetted.\n\nOpen and initialize a plugin.\n\n```ts\nimport { assert } from \"https://deno.land/std/testing/asserts.ts\";\nconst rid = Deno.openPlugin(\"./path/to/some/plugin.so\");\n\n// The Deno.core namespace is needed to interact with plugins, but this is\n// internal so we use ts-ignore to skip type checking these calls.\n// @ts-ignore\nconst { op_test_sync, op_test_async } = Deno.core.ops();\n\nassert(op_test_sync);\nassert(op_test_async);\n\n// @ts-ignore\nconst result = Deno.core.opSync(\"op_test_sync\");\n\n// @ts-ignore\nconst result = await Deno.core.opAsync(\"op_test_sync\");\n```\n\nRequires `allow-plugin` permission.\n\nThe plugin system is not stable and will change in the future, hence the\nlack of docs. For now take a look at the example\nhttps://github.com/denoland/deno/tree/main/test_plugin" ], "range":{ "start":{ @@ -506,7 +506,7 @@ fn lsp_hover_unstable_enabled() { }, "end":{ "line":0, - "character":21 + "character":27 } } })) |