/// //// const a = (a: number) /*a*/=>/*b*/ {/* comment */ return a;}; 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 a = (a: number) => /* comment */ a;`, });