oxc/tasks/transform_conformance/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
..
babel.snap.md fix(transformer/typescript): should strip import specifiers type with only_remove_type_imports (#8141) 2025-01-06 18:20:16 +08:00
babel_exec.snap.md feat(transformer/class-properties): transform private in expression (#8202) 2024-12-31 12:30:58 +00:00
oxc.snap.md fix(transformer/arrow-functions): store super_methods on a Stack to fix nested async methods (#8331) 2025-01-08 21:00:45 +00:00
oxc_exec.snap.md feat(transformer/class-properties): insert statements after statement of class expression (#8116) 2024-12-31 12:30:55 +00:00