TypeScript/tests/cases/fourslash/refactorConvertParamsToDestructuredObject_inheritedConstructor.ts

21 lines
666 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
////class Foo {
//// /*a*/constructor/*b*/(t: string, s: string) { }
////}
////class Bar extends Foo { }
////var bar = new Bar("a", "b");
////var foo = new Foo("c", "d");
goTo.select("a", "b");
edit.applyRefactor({
refactorName: "Convert parameters to destructured object",
actionName: "Convert parameters to destructured object",
actionDescription: "Convert parameters to destructured object",
newContent: `class Foo {
constructor({ t, s }: { t: string; s: string; }) { }
}
class Bar extends Foo { }
var bar = new Bar({ t: "a", s: "b" });
2019-02-25 19:32:28 +01:00
var foo = new Foo({ t: "c", s: "d" });`
});