TypeScript/tests/cases/fourslash/completionListPrivateMembers.ts

18 lines
287 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path="fourslash.ts"/>
////class Foo {
//// private x;
////}
////
////class Bar extends Foo {
//// private y;
//// foo() {
//// this./**/
//// }
////}
goTo.marker();
verify.memberListContains("y");
verify.not.memberListContains("x");