groovy-eclipse icon indicating copy to clipboard operation
groovy-eclipse copied to clipboard

Eclipse Groovy Development Tools

Results 91 groovy-eclipse issues
Sort by recently updated
recently updated
newest added

Consider this Java class: ```java package test59; public class Test59Java { public void foo(String string, Integer num) { } } ``` and this Groovy class: ```groovy package test59 import groovy.transform.CompileStatic...

![image](https://user-images.githubusercontent.com/18193802/73678952-17a98d00-467f-11ea-9ea6-b8fcebbcfff8.png)

I have Java formatter settings which should format the following: ```groovy def dummyMethod() { def doIt=false if(doIt) { return null } } ``` into: ```groovy def dummyMethod() { def doIt...

help wanted

Consider the following: ```groovy package a class B { static def getX() {} } ``` ```groovy import static a.B.getX x ``` `x` is a static method call expression for `getX`....

bug

Consider the following: ```groovy class C { Number n void meth(C that) { "setN"(42) this."setN"(42) that."setN"(42) } } ``` Renaming property "n" does not in-turn rename the method call expressions...

Lately I am seeing compile errors with my Spock/Geb classes when overriding methods like `setup()` or `cleanup()` across three levels of class hierarchy: ``` cannot override setup() ... attempting to...

bug

![image](https://user-images.githubusercontent.com/18193802/68502055-3685b800-0225-11ea-84fd-468998486bc5.png)

enhancement

Variation of #866. Consider this class: ```groovy package test50 class Test50 { String foo private final TreeNode| } ``` Invoke code assist at "|" and choose `javax.swing.tree.TreeNode`. Once again, the...

bug

Consider this: ```groovy package test56 class Test56 { static Date foo(String foo) { new Date() } static Date bar(String bar) { foo(bar).clearTime() } } ``` Hit F2 or F3 over...

bug