Microsoft/TypeScript

Comments on constructor super call not preserved in ES5 unless it has additional empty line

开放

#49,045 创建于 2022年5月10日

 (1 条评论) (0 个反应) (0 位负责人)TypeScript (13,395 个派生)batch import
Domain: Comment EmitExperience EnhancementHelp WantedSuggestion

仓库指标

星标
 (108,860 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Bug Report

🔎 Search Terms

  • comments
  • stripped
  • super
  • constructor

🕗 Version & Regression Information

  • This is the behavior in every version I tried, and I reviewed the FAQ for entries about _________

⏯ Playground Link

Playground link with relevant code

💻 Code

class B {
    constructor(...args: any[]) {}
}

class A extends B {
    constructor(...args: any[]) {
        /** this comment is not preserved */
        super(...args)
    }
}

class C extends B {
    constructor(...args: any[]) {
        /** this comment is preserved */
        
        super(...args)
    }
}

🙁 Actual behavior

Comment on the super call was not preserved in the ES5 output

🙂 Expected behavior

Comment on the super call to be preserved

贡献者指南