TypeScript/tests/cases/fourslash/extract-method24.ts

26 lines
547 B
TypeScript
Raw Normal View History

2017-08-05 01:10:33 +02:00
/// <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() {
2017-08-05 01:10:33 +02:00
let a = [1,2,3];
let x = 0;
console.log(/*RENAME*/newFunction(a, x));
2017-08-05 01:10:33 +02:00
}
2017-08-05 01:10:33 +02:00
function newFunction(a: number[], x: number): any {
return a[x];
}
`
});