TypeScript/tests/cases/fourslash/completionListPrivateMembers.ts
2014-09-15 13:53:25 -07:00

18 lines
287 B
TypeScript

/// <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");