class-static-block-support-1.js 138 B

1234567891011
  1. let foo = 1;
  2. class Foo {
  3. static abc;
  4. static {
  5. let bar = 2;
  6. Foo.abc = 3;
  7. foo = 4;
  8. bar = 5;
  9. }
  10. }