TypeScript/tests/cases/fourslash/refactorAddOrRemoveBracesToArrowFunction13.ts

12 lines
356 B
TypeScript
Raw Normal View History

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