TypeScript/tests/cases/fourslash/extract-method34.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

55 lines
991 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: /a.ts
////export interface A {
//// x: number;
////}
// @Filename: /b.ts
////export interface B<T> {
//// payload: T;
////}
// @Filename: /c.ts
////import { A } from "./a";
////import { B } from "./b";
////export interface C<T> {
//// payload: T;
////}
////
////export const c: C<B<A>> = {
//// payload: {
//// payload: { x: 1 }
//// }
////}
// @Filename: /d.ts
////import { c } from "./c";
////
////function foo() {
//// const prop = c;
//// /*a*/console.log(prop);/*b*/
////}
goTo.file("/c.ts");
goTo.select("a", "b");
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_1",
actionDescription: "Extract to function in module scope",
newContent:
`import { A } from "./a";
import { B } from "./b";
import { C, c } from "./c";
function foo() {
const prop = c;
/*RENAME*/newFunction(prop);
}
function newFunction(prop: C<B<A>>) {
console.log(prop);
}
`
});