TypeScript/tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction16.ts
2018-05-23 10:19:08 +08:00

12 lines
354 B
TypeScript

/// <reference path='fourslash.ts' />
//// const foo = /*a*/a/*b*/ => { return {}; };
goTo.select("a", "b");
edit.applyRefactor({
refactorName: "Add or remove braces in an arrow function",
actionName: "Remove braces from arrow function",
actionDescription: "Remove braces from arrow function",
newContent: `const foo = a => ({});`,
});