TypeScript/tests/cases/fourslash/memberListOfModule.ts

19 lines
286 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts' />
////module Foo {
//// export class Bar {
////
//// }
////
////
//// export module Blah {
////
//// }
////}
////
////var x: Foo./**/
goTo.marker();
verify.memberListCount(2);
verify.memberListContains('Bar');
verify.memberListContains('Blah');