input.js 125 B

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