TypeScript版本: 3.8.3搜索词:代码:
class Sub extends Super { constructor () { return super(); } }
预期行为: 无错误实际行为:TS2322** playground链接:**相关问题:
TS2322
6ss1mwsb1#
插件:
class Sub extends Super { a :1; constructor () { super().a;// better to be able to warn not init yet this.a = 1; this.a;// ok now } }
5vf7fwbs2#
有任何计划在近期修复(调查)这个问题吗?
ntjbwcob3#
最近,tsc将super编译成了一个内联匿名函数,我想知道为什么
super
w51jfk4q4#
@cangSDARMCan you post the source code which reproduces that bug with the relevant tsconfig.json configuration?
tsconfig.json
```ts repro // source code here
Workbench Repro
nkhmeac65#
cangSDARM,你能发布一下重现该bug的源代码吗?需要相关的tsconfig.json配置。
Workbench Repro抱歉,我犯了个错误。我做了更多的调查,这是esbuild的问题:) evanw/esbuild#3538
5条答案
按热度按时间6ss1mwsb1#
插件:
5vf7fwbs2#
有任何计划在近期修复(调查)这个问题吗?
ntjbwcob3#
最近,tsc将
super
编译成了一个内联匿名函数,我想知道为什么w51jfk4q4#
@cangSDARM
Can you post the source code which reproduces that bug with the relevant
tsconfig.json
configuration?Workbench Repro
nkhmeac65#
cangSDARM,你能发布一下重现该bug的源代码吗?需要相关的
tsconfig.json
配置。Workbench Repro
抱歉,我犯了个错误。我做了更多的调查,这是esbuild的问题:) evanw/esbuild#3538