TypeScript/tests/cases/fourslash/completionListAfterClassExtends.ts
2014-07-29 12:17:44 -07:00

16 lines
331 B
TypeScript

/// <reference path='fourslash.ts'/>
////module Bar {
//// export class Bleah {
//// }
//// export class Foo extends /**/Bleah {
//// }
////}
////
////function Blah(x: Bar.Bleah) {
////}
goTo.marker();
verify.completionListContains("Bar");
verify.completionListContains("Bleah");
verify.completionListContains("Foo");