TypeScript/tests/cases/fourslash/importTypeMemberCompletions.ts
Wesley Wigham a81a645128
Enable member completions for import types (#23085)
* Enable member completions for import types

* Add missing semicolon

* Compact statements

* Ye doth compacteth too much

* Handle class accesibility
2018-04-03 11:53:01 -07:00

51 lines
1.4 KiB
TypeScript

/// <reference path="fourslash.ts" />
// @Filename: /ns.ts
////export namespace Foo {
//// export namespace Bar {
//// export class Baz {}
//// export interface Bat {}
//// export const a: number;
//// const b: string;
//// }
////}
// @Filename: /top.ts
////export interface Bat {}
////export const a: number;
// @Filename: /equals.ts
////class Foo {
//// public static bar: string;
//// private static baz: number;
////}
////export = Foo;
// @Filename: /usage1.ts
////type A = typeof import("./ns")./*1*/
// @Filename: /usage2.ts
////type B = typeof import("./ns").Foo./*2*/
// @Filename: /usage3.ts
////type C = typeof import("./ns").Foo.Bar./*3*/
// @Filename: /usage4.ts
////type D = import("./ns")./*4*/
// @Filename: /usage5.ts
////type E = import("./ns").Foo./*5*/
// @Filename: /usage6.ts
////type F = import("./ns").Foo.Bar./*6*/
// @Filename: /usage7.ts
////type G = typeof import("./top")./*7*/
// @Filename: /usage8.ts
////type H = import("./top")./*8*/
// @Filename: /usage9.ts
////type H = typeof import("./equals")./*9*/
verify.completionsAt("1", ["Foo"]);
verify.completionsAt("2", ["Bar"]);
verify.completionsAt("3", ["Baz", "a"]);
verify.completionsAt("4", ["Foo"]);
verify.completionsAt("5", ["Bar"]);
verify.completionsAt("6", ["Baz", "Bat"]);
verify.completionsAt("7", ["a"]);
verify.completionsAt("8", ["Bat"]);
verify.completionsAt("9", ["prototype", "bar"]);