diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-09-10 05:04:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 05:04:59 -0700 |
commit | c2f97494f770dc36c0cacdb839f953b00e916e2c (patch) | |
tree | 8c2fb1d138760202dd4d15b3008b69115940d0e7 /tests/integration/lsp_tests.rs | |
parent | 9a169e3cf11cccec0dd1a6acbfdba927d99658f5 (diff) |
refactor: move WebGPU, FFI and FS typings from unstable to stable (#25488)
Closes #25377
Diffstat (limited to 'tests/integration/lsp_tests.rs')
-rw-r--r-- | tests/integration/lsp_tests.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index 981dcc01d..8fb64defd 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -2143,7 +2143,7 @@ fn lsp_hover_unstable_always_enabled() { "version": 1, // IMPORTANT: If you change this API due to stabilization, also change it // in the enabled test below. - "text": "type _ = Deno.ForeignLibraryInterface;\n" + "text": "type _ = Deno.DatagramConn;\n" } })); let res = client.write_request( @@ -2161,14 +2161,14 @@ fn lsp_hover_unstable_always_enabled() { "contents":[ { "language":"typescript", - "value":"interface Deno.ForeignLibraryInterface" + "value":"interface Deno.DatagramConn" }, - "**UNSTABLE**: New API, yet to be vetted.\n\nA foreign library interface descriptor.", - "\n\n*@category* - FFI \n\n*@experimental*", + "**UNSTABLE**: New API, yet to be vetted.\n\nA generic transport listener for message-oriented protocols.", + "\n\n*@category* - Network \n\n*@experimental*", ], "range":{ "start":{ "line":0, "character":14 }, - "end":{ "line":0, "character":37 } + "end":{ "line":0, "character":26 } } }) ); @@ -2188,7 +2188,7 @@ fn lsp_hover_unstable_enabled() { "uri": "file:///a/file.ts", "languageId": "typescript", "version": 1, - "text": "type _ = Deno.ForeignLibraryInterface;\n" + "text": "type _ = Deno.DatagramConn;\n" } })); let res = client.write_request( @@ -2206,14 +2206,14 @@ fn lsp_hover_unstable_enabled() { "contents":[ { "language":"typescript", - "value":"interface Deno.ForeignLibraryInterface" + "value":"interface Deno.DatagramConn" }, - "**UNSTABLE**: New API, yet to be vetted.\n\nA foreign library interface descriptor.", - "\n\n*@category* - FFI \n\n*@experimental*", + "**UNSTABLE**: New API, yet to be vetted.\n\nA generic transport listener for message-oriented protocols.", + "\n\n*@category* - Network \n\n*@experimental*", ], "range":{ "start":{ "line":0, "character":14 }, - "end":{ "line":0, "character":37 } + "end":{ "line":0, "character":26 } } }) ); |