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
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
The text was updated successfully, but these errors were encountered:
Using the example usage from BaseScript groovy-eclipse is nolonger able to resolve/display hover help.
The text was updated successfully, but these errors were encountered: