1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
//// [tests/cases/conformance/classes/classStaticBlock/classStaticBlock15.ts] ////
//// [classStaticBlock15.ts]
var _C__1;
class C {
static #_1 = 1;
static #_3 = 3;
static #_5 = 5;
static {}
static {}
static {}
static {}
static {}
static {}
}
console.log(_C__1)
//// [classStaticBlock15.js]
var _C__1;
class C {
static #_1 = 1;
static #_3 = 3;
static #_5 = 5;
static { }
static { }
static { }
static { }
static { }
static { }
}
console.log(_C__1);
|