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

10 lines
143 B
TypeScript

class C {
static f() {
var y/*1*/ = this;
}
static get x() {
var y/*2*/ = this;
return y;
}
}