-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Closed
Labels
Domain: LS: Quick FixesEditor-provided fixes, often called code actions.Editor-provided fixes, often called code actions.Effort: ModerateRequires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Help WantedYou can do thisYou can do thisSuggestionAn idea for TypeScriptAn idea for TypeScript
Milestone
Description
Bug Report
π Search Terms
override, parameter declaration, quickfix
π Version & Regression Information
- I was unable to test this on prior versions because _______
β― Playground Link
π» Code
class B {
foo = 1
}
class D1 extends B {
constructor(
public foo: number, // should have quickfix to add modifier, and better message
) {
super();
}
}
class D2 extends B {
constructor(
public override bar: number, // should have quickfix to remove modifier
) {
super();
}
}π Actual behavior
π Expected behavior
Metadata
Metadata
Assignees
Labels
Domain: LS: Quick FixesEditor-provided fixes, often called code actions.Editor-provided fixes, often called code actions.Effort: ModerateRequires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Help WantedYou can do thisYou can do thisSuggestionAn idea for TypeScriptAn idea for TypeScript