TypeScript/tests/cases/fourslash/extract-method35.ts
Andrew Branch 03c79d7422
Insert auto-imports in sorted order (#39394)
* Sort auto-imports

* Avoid re-checking sort all the time

* Add comment
2020-07-08 15:25:04 -07:00

38 lines
711 B
TypeScript

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