/// // @Filename: /a.ts ////export interface A { //// x: number; ////} // @Filename: /b.ts ////import { A } from "./a"; ////export interface B { //// payload: T; ////} ////export const b: B = { //// payload: { x: 1 } ////} // @Filename: /c.ts ////import { b } from "./b"; //// ////class Foo { //// foo() { //// const arg = b; //// /*a*/console.log(arg);/*b*/ //// } ////} goTo.file("/c.ts"); goTo.select("a", "b"); edit.applyRefactor({ refactorName: "Extract Symbol", actionName: "function_scope_1", actionDescription: "Extract to method in class 'Foo'", newContent: `import { A } from "./a"; import { B, b } from "./b"; class Foo { foo() { const arg = b; this./*RENAME*/newMethod(arg); } private newMethod(arg: B) { console.log(arg); } }` });