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