TypeScript/tests/cases/fourslash/extract-method15.ts
Andrew Casey 2ea4cfe23b Insert a line break before a function at EOF if needed
This is a pre-existing issue that became more obvious after refining
trivia handling.
2017-10-12 14:19:36 -07:00

28 lines
615 B
TypeScript

/// <reference path='fourslash.ts' />
// Extracting an increment expression (not statement) should do the right thing,
// including not generating extra destructuring unless needed
//// function foo() {
//// var i = 10;
//// /*a*/i++/*b*/;
//// }
goTo.select('a', 'b');
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_1",
actionDescription: "Extract to function in global scope",
newContent:
`function foo() {
var i = 10;
i = /*RENAME*/newFunction(i);
}
function newFunction(i: number) {
i++;
return i;
}
`
});