diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-12-29 22:22:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-29 22:22:47 +0100 |
commit | 218d7ab7780d5e44d3badd1102a65a1be2afd00a (patch) | |
tree | 5e51b4a3f37f17398fa6d94500ac53646561ba88 /cli/lsp/tsc.rs | |
parent | ef5f8cd265b4bf161832ee23abfbe10605cf5b67 (diff) |
fix(lsp): completions for private variables (#17220)
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index de34c7fa6..7145d00c2 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -2205,7 +2205,7 @@ impl CompletionEntry { return Some(insert_text.clone()); } } else { - return Some(self.name.replace('#', "")); + return None; } } @@ -4060,7 +4060,7 @@ mod tests { ..Default::default() }; let actual = fixture.get_filter_text(); - assert_eq!(actual, Some("abc".to_string())); + assert_eq!(actual, None); let fixture = CompletionEntry { kind: ScriptElementKind::MemberVariableElement, |