TypeScript/tests/cases/fourslash/lambdaThisMembers.ts

17 lines
312 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path="fourslash.ts"/>
//// class Foo {
//// a: number;
//// b() {
//// var x = () => {
//// this./**/;
//// }
//// }
//// }
goTo.marker();
verify.completionListContains("a");
verify.completionListContains("b");
verify.memberListCount(2);