input.js 135 B

1234567891011
  1. class Foo {
  2. #foo = 0;
  3. test(other) {
  4. this.#foo += 1;
  5. this.#foo = 2;
  6. other.obj.#foo += 1;
  7. other.obj.#foo = 2;
  8. }
  9. }