Open
Description
After commit 2880aae, SignatureInformation.activeParameter
does not have omitempty tag and always marshal. The problem is that its never assigned to anything and always 0
, which overrides actual value in SignatureHelp.activeParameter
, as stated in spec.
Solution is have same value as in SignatureHelp.activeParameter
in SignatureInformation.activeParameter
. The fix is minimal—just a one-line change —and I've submitted a PR.