diff options
author | Ryan Cumming <[email protected]> | 2019-06-29 10:46:20 +0100 |
---|---|---|
committer | Ryan Cumming <[email protected]> | 2019-06-29 10:46:20 +0100 |
commit | 50c6ab709e38b63fb1e3ee5db40426ef131cbd71 (patch) | |
tree | 944a34834c4dae7dbf15b7370212bcf1b8153bd7 /editors | |
parent | abc0784e57610a0cceca63301489918015418df6 (diff) |
Comment on the key of `suggestedFixes`
This isn't immediately obvious without looking at the users of the map
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/utils/diagnostics/SuggestedFixCollection.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/code/src/utils/diagnostics/SuggestedFixCollection.ts b/editors/code/src/utils/diagnostics/SuggestedFixCollection.ts index 3b0bf7468..132ce12f8 100644 --- a/editors/code/src/utils/diagnostics/SuggestedFixCollection.ts +++ b/editors/code/src/utils/diagnostics/SuggestedFixCollection.ts | |||
@@ -11,6 +11,9 @@ export default class SuggestedFixCollection | |||
11 | implements vscode.CodeActionProvider { | 11 | implements vscode.CodeActionProvider { |
12 | public static PROVIDED_CODE_ACTION_KINDS = [vscode.CodeActionKind.QuickFix]; | 12 | public static PROVIDED_CODE_ACTION_KINDS = [vscode.CodeActionKind.QuickFix]; |
13 | 13 | ||
14 | /** | ||
15 | * Map of document URI strings to suggested fixes | ||
16 | */ | ||
14 | private suggestedFixes: Map<string, SuggestedFix[]>; | 17 | private suggestedFixes: Map<string, SuggestedFix[]>; |
15 | 18 | ||
16 | constructor() { | 19 | constructor() { |