-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(31126): show completions in nested namespace name (#39663)
- Loading branch information
1 parent
d896353
commit db5f519
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
tests/cases/fourslash/completionListInNestedNamespaceName.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/// <reference path='fourslash.ts'/> | ||
|
||
////namespace A { | ||
//// export namespace B { | ||
//// export interface C {} | ||
//// } | ||
////} | ||
//// | ||
////interface T1 extends A/*1*/ | ||
//// | ||
////declare const t2: A/*2*/ | ||
//// | ||
////const t3 = (x: A/*3*/) => {} | ||
//// | ||
////interface T4 { | ||
//// c: A/*4*/ | ||
////} | ||
|
||
for (const marker of test.markers()) { | ||
goTo.marker(marker); | ||
edit.insert("."); | ||
verify.completions({ exact: ["B"] }); | ||
edit.insert("B."); | ||
verify.completions({ exact: ["C"] }); | ||
edit.insert("C."); | ||
verify.completions({ exact: undefined }); | ||
} |