We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 418c79f commit bf51b31Copy full SHA for bf51b31
vsintegration/src/FSharp.Editor/Hints/HintService.fs
@@ -27,7 +27,7 @@ module HintService =
27
|> Seq.collect (InlineParameterNameHints(parseResults).GetHintsForUnionCase symbol)
28
| _ -> []
29
30
- hintKinds |> Set.toList |> List.map getHintsPerKind
+ hintKinds |> Seq.map getHintsPerKind |> Set.toList
31
32
let private getHintsForSymbol (sourceText: SourceText) parseResults hintKinds (symbol, symbolUses) =
33
let hints = getHints sourceText parseResults hintKinds symbolUses symbol
0 commit comments