DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / thisInStatics.ts
12345678910
class C { static f() { var y/*1*/ = this; } static get x() { var y/*2*/ = this; return y; } }