-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issueVS Code TrackedThere is a VS Code equivalent to this issueThere is a VS Code equivalent to this issue
Milestone
Description
TypeScript Version: 2.5.1
Code
interface IFoo {
bar(): number;
}
class Foo implements IFoo {
}
Trigger the implement interface quick fix on class Foo
Expected behavior:
Users can configure if single or double quotes are used for the Method not implemented error
Actual behavior:
Double quotes are always used for the Method not implemented error
interface IFoo {
bar(): number;
}
class Foo implements IFoo {
bar(): number {
throw new Error("Method not implemented.");
}
}
Related to #13270
psulek
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issueVS Code TrackedThere is a VS Code equivalent to this issueThere is a VS Code equivalent to this issue