TypeScript/tests/cases/compiler/typeOfThisInStatics.ts
2014-07-12 17:30:19 -07:00

10 lines
135 B
TypeScript

class C {
static foo() {
var r = this;
}
static get x() {
var r = this;
return 1;
}
}