input.js 127 B

12345678
  1. class Foo {
  2. one = this.#private;
  3. #two = this.#private;
  4. #private = 0;
  5. three = this.#private;
  6. #four = this.#private;
  7. }