TypeScript/tests/cases/fourslash/refactorConvertToGetAccessAndSetAccess_js_6.ts
Wenlu Wang 9c0671d661 add refactor of convert private field to getter and setter (#22143)
* add refactor of convert private field to getter and setter

* fix refactor

* stash

* refactor accessor generate

* revert merge union type

* refeactor and accept baseline

* add support of PropertyAssignment and StringLiteral

* add support for js file

* allow static modifier in js file
2018-04-10 11:51:41 -07:00

25 lines
543 B
TypeScript

/// <reference path='fourslash.ts' />
// @allowJs: true
// @Filename: a.js
//// class A {
//// "_a" = 2;
//// /*a*/"a"/*b*/ = 1;
//// }
goTo.select("a", "b");
edit.applyRefactor({
refactorName: "Generate 'get' and 'set' accessors",
actionName: "Generate 'get' and 'set' accessors",
actionDescription: "Generate 'get' and 'set' accessors",
newContent: `class A {
"_a" = 2;
/*RENAME*/"_a_1" = 1;
get "a"() {
return this["_a_1"];
}
set "a"(value) {
this["_a_1"] = value;
}
}`,
});