TypeScript/tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction6.ts

12 lines
350 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
//// const foo = /*a*/a/*b*/ => { return 1; };
goTo.select("a", "b");
edit.applyRefactor({
2018-04-17 04:33:21 +02:00
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 => 1;`,
});