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
While I was testing #47 today, I noticed that code completion wasn't suggesting some common classes from the Java libraries. I could reproduce this behavior with Moonshine 3.3.0 and Grails 3.3.10 (Groovy 2.4.17) as well:
Create a new Grails project
Create a new Groovy file at src/main/groovy/TestGroovy.groovy
In the TestGroovy() method, type "StringBuilde" and press CTRL-Space
BUG: I expected this to find StringBuilder, which is a Java class with Groovy modifications
I could also reproduce this with plain Java classes like ArrayList and Vector. New Groovy classes like GString or XmlSlurper complete properly.
If I type out a StringBuilder initialization, I find that tooltips and method completion work fine.
The text was updated successfully, but these errors were encountered:
While I was testing #47 today, I noticed that code completion wasn't suggesting some common classes from the Java libraries. I could reproduce this behavior with Moonshine 3.3.0 and Grails 3.3.10 (Groovy 2.4.17) as well:
TestGroovy()
method, type "StringBuilde" and press CTRL-SpaceI could also reproduce this with plain Java classes like
ArrayList
andVector
. New Groovy classes like GString or XmlSlurper complete properly.If I type out a StringBuilder initialization, I find that tooltips and method completion work fine.
The text was updated successfully, but these errors were encountered: