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

9 lines
169 B
TypeScript

class P {
x = this;
static y = this;
constructor(public z = this, zz = this) { }
foo(zz = this) { zz.x; }
static bar(zz = this) { zz.y; }
}