TypeScript/tests/cases/fourslash/typeOfThisInStatics.ts
2014-10-07 11:30:27 -07:00

17 lines
No EOL
357 B
TypeScript

/// <reference path='fourslash.ts'/>
////class C {
//// static foo() {
//// var /*1*/r = this;
//// }
//// static get x() {
//// var /*2*/r = this;
//// return 1;
//// }
////}
goTo.marker('1');
verify.quickInfoIs('(local var) r: typeof C');
goTo.marker('2');
verify.quickInfoIs('(local var) r: typeof C');