1 2 3 4 5 6 7 8 9 10 11 12
class C { set f(val) { this.f = val; super.g++; } } let c = new C(); gczeal(14,50); try { c.f = 1; } catch {}