DEBSOURCES
Skip Quicknav
sources / node-typescript / 4.9.5%2Bds1-2 / tests / cases / compiler / classExpressionWithStaticProperties2.ts
123456789
//@target: es5 var v = class C { static a = 1; static b static c = { x: "hi" } static d = C.c.x + " world"; };