我有 Jenkins 管道共享库,它指定了一个提供两种方法的全局变量。 foo
其中一个没有参数,另一个有一个可选参数:
/vars/foo.groovy
def getBarOne() {
//...
}
def getBarTwo(String value = '') {
//...
}
现在我想提供一个 IntellJ GSDL 文件,它支持这两种方法的有用代码完成。(我的 Jenkins 提供的 GSDL 只包含全局变量的定义,但不包含它的方法,所以我试图添加它。)
pipeline.gsdl(詹金斯)
//The global script scope
def ctx = context(scope: scriptScope())
contributor(ctx) {
//...
property(name: 'foo', type: 'org.jenkinsci.plugins.workflow.cps.global.UserDefinedGlobalVariable')
}
//..
pipeline.gsdl(被我拉皮条)
//The global script scope
def ctx = context(scope: scriptScope())
contributor(ctx) {
//...
property(name: 'foo', type: 'org.jenkinsci.plugins.workflow.cps.global.UserDefinedGlobalVariable')
}
def uservarCtx = context(ctype: 'org.jenkinsci.plugins.workflow.cps.global.UserDefinedGlobalVariable')
contributor (uservarCtx) {
method name: 'getBarOne', type: 'java.lang.String', params: [:]
method name: 'getBarTwo', params: [value:'java.lang.String'], type: 'List<String>'
}
//..
到目前为止,一切都很好。
但是,正如它所暗示的那样,我的 Jenkinsfile 中的代码完成并不完全令人满意
因为getBarOne()
它暗示了.barOne
和.getBarOne()
; 建议使用 for getBarTwo(..)
only .getBarTwo(String value)
,尽管该参数是可选的。
如何在 GDSL 文件中指定参数是可选的,以便我得到建议的所有三个(有效的常规)选项barTwo
:getBarTwo()
和getBarTwo(String value)
? (不幸的是,“GDSL AWESOMENESS”系列没有帮助。)