Comment on the key of suggestedFixes

This isn't immediately obvious without looking at the users of the map
This commit is contained in:
Ryan Cumming 2019-06-29 19:46:20 +10:00
parent abc0784e57
commit 50c6ab709e

View file

@ -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() {