oxc/tasks
overlookmotel bb3806554f fix(transformer/class-properties): do not transform super.prop in nested method within static prop initializer (#7978)
Don't transform `super` in static property initializers if it's nested in another method, so is a *different* `super`.

```js
class C {
  static prop = () => {
    const object = {
      method() {
        // `super` here refers to prototype of `object`, not class `C`
        return super.foo;
      }
    };
  };
}
```
2024-12-18 03:00:04 +00:00
..
ast_tools refactor(global): sort imports (#7883) 2024-12-14 15:07:21 +00:00
benchmark ci(benchmarks): simplify benchmarks (#7939) 2024-12-16 22:01:01 +08:00
common chore(doc): replace main/master to tag/commit to make the url always accessible (#7298) 2024-11-16 21:00:30 +08:00
compat_data refactor(global): sort imports (#7883) 2024-12-14 15:07:21 +00:00
coverage fix(coverage): make coverage runtime timeout stable (#7953) 2024-12-17 12:02:56 +08:00
javascript_globals feat(linter)!: sync sindresorhus/globals; removed Object.prototype properties from builtin and es* globals (#6991) 2024-10-29 04:13:20 +00:00
lint_rules refactor(tasks/lint_rules): detect typescript alias from mod.rs file (#7891) 2024-12-15 00:14:15 +08:00
minsize fix(minifier): incorrect minification in try_fold_left_child_op (#7949) 2024-12-17 10:40:22 +08:00
prettier_conformance feat(prettier): Complete print_literal (#7952) 2024-12-17 12:02:22 +08:00
rulegen feat(linter)!: remove unmaintained security plugin (#7773) 2024-12-10 14:29:22 +00:00
transform_checker refactor(global): sort imports (#7883) 2024-12-14 15:07:21 +00:00
transform_conformance fix(transformer/class-properties): do not transform super.prop in nested method within static prop initializer (#7978) 2024-12-18 03:00:04 +00:00
website docs(tasks/website): add legend for fixable column (#7945) 2024-12-17 10:25:11 +08:00