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

21 lines
424 B
TypeScript

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