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

26 lines
547 B
TypeScript

/// <reference path='fourslash.ts' />
//// function M() {
//// let a = [1,2,3];
//// let x = 0;
//// console.log(/*a*/a[x]/*b*/);
//// }
goTo.select('a', 'b')
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_1",
actionDescription: "Extract to function in global scope",
newContent:
`function M() {
let a = [1,2,3];
let x = 0;
console.log(/*RENAME*/newFunction(a, x));
}
function newFunction(a: number[], x: number): any {
return a[x];
}
`
});