TypeScript/tests/cases/fourslash/refactorConvertToGetAccessAndSetAccess7.ts
Andy 43bf039a94
Add refactor to convert namespace to named imports and back (#24469)
* Add refactor to convert namespace to named imports and back

* Add tests and comments

* Code review

* Handle shorthand property assignment and re-export

* Don't use forEachFreeIdentifier

* Fix rename after "."
2018-05-30 14:11:53 -07:00

22 lines
517 B
TypeScript

/// <reference path='fourslash.ts' />
//// class A {
//// /*a*/protected _a: string;/*b*/
//// }
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 {
private _a: string;
protected get /*RENAME*/a(): string {
return this._a;
}
protected set a(value: string) {
this._a = value;
}
}`,
});