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
I verified the progress with Groovy 4.0.4 of my compile problem, the groovy editor still won't accept the following java functional syntax:
In java this is fine:
public void works() {
daoV_search_doc_key.selBy(s-> s.where(V_search_doc_keySql.ISDELETED, isEqualTo(0)));
}
In Groovy, this is wrong:
public void works() {
daoV_search_doc_key.selBy(s-> s.where(V_search_doc_keySql.ISDELETED, isEqualTo(0)))
}
In your example project, the Groovy code is still indicated as @CompileStatic which was not addressed by #1364. You will need to wait for GROOVY-10646 for type-checked code or switch to dynamic mode.
Also #1368 and #1369 should help the editor but not the compiler.
I verified the progress with Groovy 4.0.4 of my compile problem, the groovy editor still won't accept the following java functional syntax:
In java this is fine:
In Groovy, this is wrong:
A repo to reproduce:
https://github.com/EffectiveCompany/public_repo.git
The text was updated successfully, but these errors were encountered: