Remove TODO: GH#18795 comments (#23337)

This commit is contained in:
Andy
2018-04-11 16:23:04 -07:00
committed by GitHub
parent b0552b089d
commit d36f83a98d
9 changed files with 0 additions and 9 deletions

View File

@@ -7,7 +7,6 @@
verify.codeFix({
description: "Implement interface 'A'",
// TODO: GH#18795
newFileContent:
`class A {
f() {}

View File

@@ -12,7 +12,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`function foo<T>(a: T) {
a;

View File

@@ -12,7 +12,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`function foo<T>(a: T) {
a;

View File

@@ -20,7 +20,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract get a(): number | string;

View File

@@ -12,7 +12,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract f(a: number, b: string): boolean;

View File

@@ -8,7 +8,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract f(): this;

View File

@@ -8,7 +8,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A<T> {
abstract f(x: T): T;

View File

@@ -8,7 +8,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A<T> {
abstract f(x: T): T;

View File

@@ -10,7 +10,6 @@
verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract x: number;