TypeScript/tests/cases/fourslash/typeOfThisInStatics.ts
2016-09-13 11:49:01 -07:00

17 lines
318 B
TypeScript

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