mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-08-30 23:27:24 +00:00
Comment on the key of suggestedFixes
This isn't immediately obvious without looking at the users of the map
This commit is contained in:
parent
abc0784e57
commit
50c6ab709e
1 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,9 @@ export default class SuggestedFixCollection
|
|||
implements vscode.CodeActionProvider {
|
||||
public static PROVIDED_CODE_ACTION_KINDS = [vscode.CodeActionKind.QuickFix];
|
||||
|
||||
/**
|
||||
* Map of document URI strings to suggested fixes
|
||||
*/
|
||||
private suggestedFixes: Map<string, SuggestedFix[]>;
|
||||
|
||||
constructor() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue