TypeScript/tests/cases/fourslash/extract-method-formatting.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

25 lines
516 B
TypeScript

/// <reference path='fourslash.ts' />
////function f(x: number): number {
//// /*start*/switch (x) {case 0:
////return 0;}/*end*/
////}
goTo.select('start', 'end')
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_1",
actionDescription: "Extract to function in global scope",
newContent: `function f(x: number): number {
return /*RENAME*/newFunction(x);
}
function newFunction(x: number) {
switch (x) {
case 0:
return 0;
}
}
`
});