TypeScript/tests/cases/fourslash/refactorConvertArrowFunctionOrFunctionExpression_ToAnon_FnArgument.ts

16 lines
447 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
2018-11-09 09:51:51 +01:00
//// function doSomething(a){}
//// doSomething(/*x*/(/*y*/) => 1 + 1);
goTo.select("x", "y");
edit.applyRefactor({
refactorName: "Convert arrow function or function expression",
actionName: "Convert to anonymous function",
actionDescription: "Convert to anonymous function",
2018-11-09 09:51:51 +01:00
newContent: `function doSomething(a){}
doSomething(function() {
return 1 + 1;
});`,
});