fix #2550 inlay hints lambdas parameter type null reference exception #2604
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
this fixes #2550
the issue happens with lambdas as parameters of a function call (Though it might happen in other cases too) es
function(sp => sp.GetService<CloudAdapter>()
this should expand to
function(|paramName:| |Type| sp => sp.GetService<CloudAdapter>()
each hint has a field called TextEdits of type
LinePositionSpanTextChange[]?
(either is an array or is null), which tell the editor that there is an option to promote the virtual text to real text in the document, but for lambdas paramenters type this is not an option so is set to null, when the TextEdits object gets passed to a foreach loop without checking for null the LSP would crash with a null referenceI've also added a test to replicate the exception, I hope it's all that's needed, if I need to change something in the PR let me know!