TypeScript/tests/cases/fourslash/extract-const-callback-function.ts
Titian Cernicova-Dragomir 232ee608d5 Improved const extraction for function expressions and arrow functions. The behavior applies if the function:
- is contextually typed (because otherwise no type annotation for the variable would have been generated anyway)
- is not generic
- doesn't have parameters inferred as any

If these conditions are met, we add missing parameters type and we add this parameter to the function.
2019-07-11 14:38:59 +03:00

14 lines
418 B
TypeScript

/// <reference path='fourslash.ts' />
////const x = [1,2,3].map(/*a*/function (x) { return x + 1 }/*b*/);
goTo.select("a", "b");
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "constant_scope_0",
actionDescription: "Extract to constant in enclosing scope",
newContent:
`const newLocal = function(x: number): number { return x + 1; };
const x = [1,2,3].map(/*RENAME*/newLocal);`
});