Skip to content

Commit 0b12946

Browse files
fixed #82 made active signature and active parameter nullable
1 parent 20b3af2 commit 0b12946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Protocol/Models/SignatureHelp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ public class SignatureHelp
2020
/// The active signature.
2121
/// </summary>
2222
[Optional]
23-
public int ActiveSignature { get; set; }
23+
public int? ActiveSignature { get; set; }
2424

2525
/// <summary>
2626
/// The active parameter of the active signature.
2727
/// </summary>
2828
[Optional]
29-
public int ActiveParameter { get; set; }
29+
public int? ActiveParameter { get; set; }
3030
}
3131
}

0 commit comments

Comments
 (0)