#12380·swc

es/minifier: 在辅助函数内联后,类的字段回调函数在各个实例之间共享

作者: leosvelperez创建于 2026年9月16日更新于 2026年9月16日

class Counter{static total = 0;id = ++Counter.total;read = () => this.id;}const counters = [new Counter(), new Counter(), new Counter()];console.log(counters.map((c) => c.read()).join(","));

内容来源: swc-project/swc