TypeScript/tests/cases/fourslash/completionListPrivateMembers.ts

18 lines
295 B
TypeScript

/// <reference path="fourslash.ts"/>
////class Foo {
//// private x;
////}
////
////class Bar extends Foo {
//// private y;
//// foo() {
//// this./**/
//// }
////}
goTo.marker();
verify.completionListContains("y");
verify.not.completionListContains("x");