groovy-language-server icon indicating copy to clipboard operation
groovy-language-server copied to clipboard

ternary operator causes LS not to work.

Open shadycuz opened this issue 4 years ago • 0 comments

I need to gather more data on this but I'm not seeing any errors. In fact, when tracing I see a list of methods but they are not being displayed by the client, but for hover I'm not seeing anything.

Using:

Boolean test = true
String yes = 'yes'
String no = 'no'

String result = test ? yes : no

I lose hover/autocomplete in that function.

shadycuz avatar Sep 13 '21 10:09 shadycuz