You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameter completion tooltip shows the constructor params for String instead of the List. This also affects mouseover tooltips because "List<of" cannot be resolved to a syntax node.
The text was updated successfully, but these errors were encountered:
This is the first attempt at parsing generics in support of parameter
completion and mouseover tooltips. For now, what works is displaying
the correct initializer overloads and their parameters. However, the
generic parameter name is displayed instead of the specified type.
For example, "foo = List<of String>(" will show the correct initializer
overloads but the tooltip will display "List<of T>" instead of
"List<of String>".
Mouseover tooltips for generic types still aren't working. We might
need a proper tokenizer and parser instead of the current hackjob.
The parameter completion tooltip shows the constructor params for String instead of the List. This also affects mouseover tooltips because "List<of" cannot be resolved to a syntax node.
The text was updated successfully, but these errors were encountered: