@babel/plugin-proposal-class-static-block

    1. class C {
    2. static #x = 42;
    3. static y;
    4. try {
    5. this.y = doSomethingWith(this.#x);
    6. }
    7. })();
    8. }
    1. babel --plugins @babel/plugin-proposal-class-static-block script.js