Re: IDE support for multi assignment statements

2020-12-12 Thread MG
Upvoted G-) (I have thought about this, and in certain situations being able to have (Intellisense supported) multi-assignment would be beneficial in our framework, so it would definitely be good to have this) Cheers, mg On 11/12/2020 23:47, Saravanan Palanichamy wrote: Thank you MG, I

Re: IDE support for multi assignment statements

2020-12-11 Thread Saravanan Palanichamy
Thank you MG, I raised this ticket https://youtrack.jetbrains.com/issue/IDEA-257580 regards Saravanan On Fri, Dec 11, 2020 at 8:59 PM MG wrote: > You could try the newest version (2020.3), but if that does not help, I > would guess JetBrains might possibly not even be aware that Groovy 3.x >

Re: IDE support for multi assignment statements

2020-12-11 Thread MG
You could try the newest version (2020.3), but if that does not help, I would guess JetBrains might possibly not even be aware that Groovy 3.x supports that feature. In that case creating a ticket is imho your best option (there are people from Jetbrains reading this ML, but they need a ticket

Re: IDE support for multi assignment statements

2020-12-11 Thread MG
I don't know about RubyMine, but for IntelliJ Groovy support, uhm, yea, obviously, as you can see in the umbrella ticket I referenced: I created several tickets, asked people to upvote them if they cared about the issue, and over (an alas elongated period of) time things did get fixed G-) On

Re: IDE support for multi assignment statements

2020-12-11 Thread Dirk Heinrichs
Am Freitag, den 11.12.2020, 10:29 +0100 schrieb MG: > If the newest IntelliJ version does not support what you need, > opening a ticket did help in the past Really? I have a RubyMine ticket open for more than 2 years now with nothing happening... :-( Bye... Dirk -- Dirk

Re: IDE support for multi assignment statements

2020-12-11 Thread MG
Hi Saravanan, what IntelliJ version are you using ? We are not using multiple assignments in our code, but from my personal experience, IntelliJ can unfortunately sometimes be more than 2 years behind current Groovy features. If the newest IntelliJ version does not support what you need,

IDE support for multi assignment statements

2020-12-10 Thread Saravanan Palanichamy
Hello I am using Groovy 3.0.5 and it supports multiple assignment statements from tuples when using static compile def(var1, var2) = Tuple.tuple("a", 1) but it looks like the Intellij IDE still calls this out as a compile error. Also it defaults to identifying var1 and var2 as objects.