Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
Remove TODO: GH#18795 comments
  • Loading branch information
Andy Hanson committed Apr 11, 2018
commit 38f4b0ffbf0ecda752a5200e18d932e8589b9571
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