Skip to content
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

Changing the method name from full-width characters ("fA") to half-width characters ("fA") #58471

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

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

////abstract class C1 { }
////abstract class C2 {
//// abstract fA<T extends number>(): T;
//// abstract fA<T extends number>(): T;
////}
////interface I1 extends C1, C2 { }
////class C3 implements I1 {[| |]}
Expand All @@ -12,11 +12,11 @@ verify.codeFix({
newFileContent:
`abstract class C1 { }
abstract class C2 {
abstract fA<T extends number>(): T;
abstract fA<T extends number>(): T;
}
interface I1 extends C1, C2 { }
class C3 implements I1 {
fA<T extends number>(): T {
fA<T extends number>(): T {
throw new Error("Method not implemented.");
}
}`,
Expand Down