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