oxc/tasks/transform_conformance/snapshots
Dunqing 335065d8c8 fix(transformer/arrow-functions): do not transform super that inside nested non-async method (#8335)
This `super.value` belongs to the nested class, we shouldn't transform it.
```js
class Outer {
    async method() {
      class Inner extends Outer {
        normal() {
          // `super.value` should not be transformed, because it is not in an async method
          super.value
        }
      }
    }
 }
```
2025-01-09 11:41:20 +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): do not transform super that inside nested non-async method (#8335) 2025-01-09 11:41:20 +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