From f234b80520ed63b168475be38086d053567f4c1e Mon Sep 17 00:00:00 2001 From: vsrs Date: Sat, 27 Feb 2021 21:57:58 +0300 Subject: Remove erroneous comment --- crates/ide/src/runnables.rs | 10 ---------- editors/code/src/lsp_ext.ts | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/crates/ide/src/runnables.rs b/crates/ide/src/runnables.rs index ce3a2e7ba..7c92b7625 100644 --- a/crates/ide/src/runnables.rs +++ b/crates/ide/src/runnables.rs @@ -110,16 +110,6 @@ pub(crate) fn runnables(db: &RootDatabase, file_id: FileId) -> Vec { res } -// Feature: Run Test -// -// Shows a popup suggesting to run a test in which the item **at the current cursor -// location** is used (if any). -// -// |=== -// | Editor | Action Name -// -// | VS Code | **Rust Analyzer: Run Test** -// |=== pub(crate) fn related_tests( db: &RootDatabase, position: FilePosition, diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index 11d4d5f00..f0e4be279 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts @@ -72,7 +72,7 @@ export interface Runnable { } export const runnables = new lc.RequestType("experimental/runnables"); -export interface RelatedTestsParams extends lc.TextDocumentPositionParams { +export interface RelatedTestsParams extends lc.TextDocumentPositionParams { } export interface TestInfo { -- cgit v1.2.3