Skip to content

Remove TODO: GH#18795 comments #23337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
1 commit merged into from
Apr 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

verify.codeFix({
description: "Implement interface 'A'",
// TODO: GH#18795
newFileContent:
`class A {
f() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`function foo<T>(a: T) {
a;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`function foo<T>(a: T) {
a;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract get a(): number | string;
Expand Down
1 change: 0 additions & 1 deletion tests/cases/fourslash/codeFixClassExtendAbstractMethod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract f(): this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A<T> {
abstract f(x: T): T;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A<T> {
abstract f(x: T): T;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

verify.codeFix({
description: "Implement inherited abstract class",
// TODO: GH#18795
newFileContent:
`abstract class A {
abstract x: number;
Expand Down