TypeScript/tests/cases/fourslash/lambdaThisMembers.ts
2014-07-29 12:17:44 -07:00

17 lines
312 B
TypeScript

/// <reference path="fourslash.ts"/>
//// class Foo {
//// a: number;
//// b() {
//// var x = () => {
//// this./**/;
//// }
//// }
//// }
goTo.marker();
verify.completionListContains("a");
verify.completionListContains("b");
verify.memberListCount(2);