You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <reference path='fourslash.ts' />////function foo() {//// var i = 10;//// /*a*/i++/*b*/;////}goTo.select("a","b");edit.applyRefactor({refactorName: "Extract Method",actionName: "scope_1",actionDescription: "Extract function into global scope",newContent:
`function foo() { var i = 10; i = /*RENAME*/newFunction(i);}function newFunction(i: number) { i++; return i;}`});