1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/// <reference path='fourslash.ts' />
// Extracting from a static context should make static methods.
// Also checks that we correctly find non-conflicting names in static contexts.
//// class C {
//// static j = /*c*/1 + 1/*d*/;
//// constructor(q: string = /*a*/"hello"/*b*/) {
//// }
//// }
goTo.select('a', 'b');
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_0",
actionDescription: "Extract to method in class 'C'",
newContent:
`class C {
static j = 1 + 1;
constructor(q: string = C./*RENAME*/newMethod()) {
}
private static newMethod(): string {
return "hello";
}
}`
});
verify.currentFileContentIs(`class C {
static j = 1 + 1;
constructor(q: string = C.newMethod()) {
}
private static newMethod(): string {
return "hello";
}
}`);
goTo.select('c', 'd');
edit.applyRefactor({
refactorName: "Extract Symbol",
actionName: "function_scope_0",
actionDescription: "Extract to method in class 'C'",
newContent:
`class C {
static j = C./*RENAME*/newMethod_1();
constructor(q: string = C.newMethod()) {
}
private static newMethod_1() {
return 1 + 1;
}
private static newMethod(): string {
return "hello";
}
}`
});
|