Skip to content

Commit d36f83a

Browse files
author
Andy
authored
Remove TODO: GH#18795 comments (#23337)
1 parent b0552b0 commit d36f83a

9 files changed

+0
-9
lines changed

tests/cases/fourslash/codeFixClassExprClassImplementClassFunctionVoidInferred.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
verify.codeFix({
99
description: "Implement interface 'A'",
10-
// TODO: GH#18795
1110
newFileContent:
1211
`class A {
1312
f() {}

tests/cases/fourslash/codeFixClassExprExtendsAbstractExpressionWithTypeArgs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
verify.codeFix({
1414
description: "Implement inherited abstract class",
15-
// TODO: GH#18795
1615
newFileContent:
1716
`function foo<T>(a: T) {
1817
a;

tests/cases/fourslash/codeFixClassExtendAbstractExpressionWithTypeArgs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
verify.codeFix({
1414
description: "Implement inherited abstract class",
15-
// TODO: GH#18795
1615
newFileContent:
1716
`function foo<T>(a: T) {
1817
a;

tests/cases/fourslash/codeFixClassExtendAbstractGetterSetter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
verify.codeFix({
2222
description: "Implement inherited abstract class",
23-
// TODO: GH#18795
2423
newFileContent:
2524
`abstract class A {
2625
abstract get a(): number | string;

tests/cases/fourslash/codeFixClassExtendAbstractMethod.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
verify.codeFix({
1414
description: "Implement inherited abstract class",
15-
// TODO: GH#18795
1615
newFileContent:
1716
`abstract class A {
1817
abstract f(a: number, b: string): boolean;

tests/cases/fourslash/codeFixClassExtendAbstractMethodThis.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
verify.codeFix({
1010
description: "Implement inherited abstract class",
11-
// TODO: GH#18795
1211
newFileContent:
1312
`abstract class A {
1413
abstract f(): this;

tests/cases/fourslash/codeFixClassExtendAbstractMethodTypeParamsInstantiateNumber.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
verify.codeFix({
1010
description: "Implement inherited abstract class",
11-
// TODO: GH#18795
1211
newFileContent:
1312
`abstract class A<T> {
1413
abstract f(x: T): T;

tests/cases/fourslash/codeFixClassExtendAbstractMethodTypeParamsInstantiateU.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
verify.codeFix({
1010
description: "Implement inherited abstract class",
11-
// TODO: GH#18795
1211
newFileContent:
1312
`abstract class A<T> {
1413
abstract f(x: T): T;

tests/cases/fourslash/codeFixClassExtendAbstractProperty.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
verify.codeFix({
1212
description: "Implement inherited abstract class",
13-
// TODO: GH#18795
1413
newFileContent:
1514
`abstract class A {
1615
abstract x: number;

0 commit comments

Comments
 (0)