@@ -14,15 +14,15 @@ verify.codeFix({
1414 index : 0 ,
1515 newFileContent :
1616`class A {
17- static m1(arg0: any, arg1: any, arg2: any): any {
18- throw new Error("Method not implemented.");
19- }
2017 static foo0() {
2118 this.m1(1,2,3);
2219 A.m2(1,2);
2320 this.prop1 = 10;
2421 A.prop2 = "asdf";
2522 }
23+ static m1(arg0: any, arg1: any, arg2: any): any {
24+ throw new Error("Method not implemented.");
25+ }
2626}` ,
2727} ) ;
2828
@@ -31,18 +31,18 @@ verify.codeFix({
3131 index : 0 ,
3232 newFileContent :
3333`class A {
34- static m2(arg0: any, arg1: any): any {
35- throw new Error("Method not implemented.");
36- }
37- static m1(arg0: any, arg1: any, arg2: any): any {
38- throw new Error("Method not implemented.");
39- }
4034 static foo0() {
4135 this.m1(1,2,3);
4236 A.m2(1,2);
4337 this.prop1 = 10;
4438 A.prop2 = "asdf";
4539 }
40+ static m2(arg0: any, arg1: any): any {
41+ throw new Error("Method not implemented.");
42+ }
43+ static m1(arg0: any, arg1: any, arg2: any): any {
44+ throw new Error("Method not implemented.");
45+ }
4646}` ,
4747} ) ;
4848
@@ -52,18 +52,18 @@ verify.codeFix({
5252 newFileContent :
5353`class A {
5454 static prop1: number;
55- static m2(arg0: any, arg1: any): any {
56- throw new Error("Method not implemented.");
57- }
58- static m1(arg0: any, arg1: any, arg2: any): any {
59- throw new Error("Method not implemented.");
60- }
6155 static foo0() {
6256 this.m1(1,2,3);
6357 A.m2(1,2);
6458 this.prop1 = 10;
6559 A.prop2 = "asdf";
6660 }
61+ static m2(arg0: any, arg1: any): any {
62+ throw new Error("Method not implemented.");
63+ }
64+ static m1(arg0: any, arg1: any, arg2: any): any {
65+ throw new Error("Method not implemented.");
66+ }
6767}` ,
6868} ) ;
6969
@@ -74,17 +74,17 @@ verify.codeFix({
7474`class A {
7575 static prop1: number;
7676 static prop2: string;
77- static m2(arg0: any, arg1: any): any {
78- throw new Error("Method not implemented.");
79- }
80- static m1(arg0: any, arg1: any, arg2: any): any {
81- throw new Error("Method not implemented.");
82- }
8377 static foo0() {
8478 this.m1(1,2,3);
8579 A.m2(1,2);
8680 this.prop1 = 10;
8781 A.prop2 = "asdf";
8882 }
83+ static m2(arg0: any, arg1: any): any {
84+ throw new Error("Method not implemented.");
85+ }
86+ static m1(arg0: any, arg1: any, arg2: any): any {
87+ throw new Error("Method not implemented.");
88+ }
8989}` ,
9090} ) ;
0 commit comments