Skip to content

Hover help/intellisense broken with @BaseScript #1190

@ffrog8

Description

@ffrog8

Using the example usage from BaseScript groovy-eclipse is nolonger able to resolve/display hover help.


abstract class CustomScriptBodyMethod extends Script {
    abstract def runScript()
    def preRun() {
        println "preRunning"
    }
    def postRun() {
        println "postRunning"
    }
    def run() {
        preRun()
        try {
            3.times { runScript() }
        } finally {
            postRun()
        }
    }
}

@BaseScript CustomScriptBodyMethod baseScript
println "Script body run"

hovering mouse over println does not show pop up hoverhelp
and
postRun is not available as an auto complete in the script

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions