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

23 lines
542 B
TypeScript
Raw Normal View History

2017-08-05 01:10:33 +02:00
/// <reference path='fourslash.ts' />
// You cannot extract a function initializer into the function's body.
// The innermost scope (function_scope_0) is the sibling of the function, not the function itself.
2017-08-05 01:10:33 +02:00
2017-09-15 19:45:15 +02:00
//// function fn(x = /*a*/3/*b*/) {
2017-08-05 01:10:33 +02:00
//// }
goTo.select('a', 'b');
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_0",
actionDescription: "Extract to function in global scope",
newContent:
`function fn(x = /*RENAME*/newFunction()) {
2017-08-05 01:10:33 +02:00
}
2017-08-05 01:10:33 +02:00
function newFunction() {
2017-09-15 19:45:15 +02:00
return 3;
2017-08-05 01:10:33 +02:00
}
`
});