// @allowNonTsExtensions: true // @Filename: test123.js /// //// // Comment //// function /*1*/fn() { //// this.baz = 10; //// } //// fn.prototype = { //// /** JSDoc */ //// get bar() { //// return this.baz; //// } //// } verify.codeFix({ description: "Convert function to an ES2015 class", newFileContent: `// Comment class fn { constructor() { this.baz = 10; } /** JSDoc */ get bar() { return this.baz; } } `, });