TypeScript/tests/cases/compiler/thisInStatics.ts

10 lines
143 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class C {
static f() {
var y/*1*/ = this;
}
static get x() {
var y/*2*/ = this;
return y;
}
}