TypeScript/tests/cases/fourslash/completionListAfterClassExtends.ts
2015-03-02 14:41:44 -08:00

16 lines
346 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");