TypeScript/tests/cases/fourslash/convertFunctionToEs6Class-prototypeMethod.ts

30 lines
506 B
TypeScript
Raw Normal View History

// @allowNonTsExtensions: true
// @Filename: test123.js
/// <reference path="./fourslash.ts" />
//// // Comment
//// function /*1*/fn() {
//// this.baz = 10;
//// }
//// fn.prototype = {
//// bar() {
//// console.log('hello world');
//// }
//// }
verify.codeFix({
description: "Convert function to an ES2015 class",
newFileContent:
`// Comment
class fn {
constructor() {
this.baz = 10;
}
bar() {
console.log('hello world');
}
}
`,
});