oxc/tasks/coverage/snapshots
Dunqing e4d66e4636 fix(transformer/arrow-functions): store super_methods on a Stack to fix nested async methods (#8331)
In the following case, async methods can be nested in another async method. The implementation is changing to store `super_methods` on a stack, and then we can store super method information in the correct `super_methods` map.

```js
const outer = {
  value: 0,
  async method() {
    () => super.value;

    const inner = {
      value: 0,
      async method() {
        () => super.value;
      }
    };

    () => super.value;
  }
};
```
2025-01-08 21:00:45 +00:00
..
codegen_babel.snap
codegen_misc.snap fix(parser): allow line breaks between const and enum (#8193) 2024-12-31 08:45:17 +08:00
codegen_test262.snap chore(coverage): bump test262 (#8055) 2024-12-21 10:20:14 +00:00
codegen_typescript.snap
minifier_babel.snap
minifier_test262.snap chore(minifier): disable RemoveUnusedCode (#8243) 2025-01-04 08:49:20 +00:00
parser_babel.snap fix(semantic): report errors for missing class method impls (#8082) 2024-12-25 12:24:33 +00:00
parser_misc.snap fix(parser): allow line breaks between const and enum (#8193) 2024-12-31 08:45:17 +08:00
parser_test262.snap fix(parser): parse import source from from 'mod' (#8056) 2024-12-21 10:20:14 +00:00
parser_typescript.snap feat(parser): missing initializer in destructuring declaration inside for loop head (#8222) 2025-01-02 14:02:49 +00:00
prettier_babel.snap
prettier_misc.snap
prettier_test262.snap
prettier_typescript.snap
runtime.snap chore(coverage): bump test262 (#8055) 2024-12-21 10:20:14 +00:00
semantic_babel.snap chore(transformer): enable class-properties plugin (#7750) 2024-12-31 12:30:58 +00:00
semantic_misc.snap fix(transformer/arrow-functions): store super_methods on a Stack to fix nested async methods (#8331) 2025-01-08 21:00:45 +00:00
semantic_test262.snap chore(transformer): enable class-properties plugin (#7750) 2024-12-31 12:30:58 +00:00
semantic_typescript.snap chore(transformer): enable class-properties plugin (#7750) 2024-12-31 12:30:58 +00:00
transformer_babel.snap chore(transformer): enable class-properties plugin (#7750) 2024-12-31 12:30:58 +00:00
transformer_misc.snap fix(parser): allow line breaks between const and enum (#8193) 2024-12-31 08:45:17 +08:00
transformer_test262.snap chore(coverage): bump test262 (#8055) 2024-12-21 10:20:14 +00:00
transformer_typescript.snap chore(transformer): enable class-properties plugin (#7750) 2024-12-31 12:30:58 +00:00
transpile.snap