oxc/tasks/coverage/snapshots
Dunqing ede10dc030 fix(transformer/async-to-generator): incorrect transform when super expression is inside async method (#7171)
After transformation, super expressions have moved to unexpected places. This PR replaces super expression to call expression, and then inserts the super methods to the top of the method body.

For example:

Before:
```js
class G {
  async method() {
    super.foo()
  }
}
```

After:
```js
class G {
  method() {
    var _superprop_getFoo = () => super.foo,
      _this = this;
    return _asyncToGenerator(function* () {
      _superprop_getFoo().call(_this);
    })();
  }
}```
2024-11-08 08:18:45 +00:00
..
codegen_babel.snap test(coverage): enable Babel es2022 tests (#7194) 2024-11-08 09:29:36 +08:00
codegen_misc.snap fix(semantic): ? on variable declaration type annotations is a syntax error (#5956) 2024-09-22 00:01:47 +00:00
codegen_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
codegen_typescript.snap chore(coverage): bump test262, babel and TypeScript (#6702) 2024-10-20 15:02:26 +00:00
minifier_babel.snap test(coverage): enable Babel es2022 tests (#7194) 2024-11-08 09:29:36 +08:00
minifier_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
parser_babel.snap test(coverage): enable Babel es2022 tests (#7194) 2024-11-08 09:29:36 +08:00
parser_misc.snap fix(parser): do not parse as and satisfies expression in javascript (#6442) 2024-10-11 03:31:24 +00:00
parser_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
parser_typescript.snap fix(parser): fix incorrect parsed TSIndexSignature (#7016) 2024-10-30 07:34:22 +00:00
prettier_babel.snap
prettier_misc.snap
prettier_test262.snap
prettier_typescript.snap
runtime.snap chore(coverage): update runtime snapshot 2024-11-01 13:05:42 +08:00
semantic_babel.snap fix(transformer/async-to-generator): only transform object method in exit_function (#7199) 2024-11-08 03:03:27 +00:00
semantic_misc.snap fix(transformer/async-to-generator): incorrect transform when super expression is inside async method (#7171) 2024-11-08 08:18:45 +00:00
semantic_test262.snap fix(transformer/async-to-generator): incorrect transform when super expression is inside async method (#7171) 2024-11-08 08:18:45 +00:00
semantic_typescript.snap fix(transformer/async-to-generator): incorrect transform when super expression is inside async method (#7171) 2024-11-08 08:18:45 +00:00
transformer_babel.snap test(coverage): enable Babel es2022 tests (#7194) 2024-11-08 09:29:36 +08:00
transformer_misc.snap fix(semantic): ? on variable declaration type annotations is a syntax error (#5956) 2024-09-22 00:01:47 +00:00
transformer_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
transformer_typescript.snap fix(transformer): only run typescript plugin for typescript source (#6889) 2024-10-25 13:59:31 +00:00
transpile.snap fix(ast): Fix StaticMemberExpression.get_first_object (#6969) 2024-11-01 12:28:48 +08:00