Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit 18bacea

Browse files
dsymecartermp
authored andcommitted
[RFC FS-1075] Improve interop to C# nullable-typed optionals (dotnet#7989)
* add test cases we need to make work * cleanup method call argument processing * update for new cases * update tests * compat Nullable allowed * reduce diff * fix mistake with byrefs * update error message * trigger CI * add version tests * mnimize diff * mnimize diff * remove assert * minor updates for code review * fix overloading change of behaviour Co-authored-by: Phillip Carter <[email protected]>
1 parent 3536247 commit 18bacea

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Completion/SignatureHelp.fs

+1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ type internal FSharpSignatureHelpProvider
168168
let prefixParts =
169169
[| TaggedText(TextTags.Method, methodGroup.MethodName);
170170
TaggedText(TextTags.Punctuation, (if isStaticArgTip then "<" else "(")) |]
171+
171172
let separatorParts = [| TaggedText(TextTags.Punctuation, ","); TaggedText(TextTags.Space, " ") |]
172173
let suffixParts = [| TaggedText(TextTags.Punctuation, (if isStaticArgTip then ">" else ")")) |]
173174

0 commit comments

Comments
 (0)