We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When selecting Go to Definition on a @Field definition for a Jenkinsfile it fails with:
Go to Definition
@Field
Jenkinsfile
Cannot read properties of undefined (reading 'with')
This should be a minimal example, if you select MYFIELD use.
MYFIELD
import groovy.transform.Field @Field final MYFIELD = 'SomeValue' def variable = 'otherValue' if (variable == MYFIELD) { echo 'Value matches.' }
The text was updated successfully, but these errors were encountered:
In case it helps, Find References works as expected, including finding the definition.
Find References
Sorry, something went wrong.
Also fails with def definition too, so in the case above select variable and Go to Definition fails with the same error.
def
No branches or pull requests
When selecting
Go to Definition
on a@Field
definition for aJenkinsfile
it fails with:This should be a minimal example, if you select
MYFIELD
use.The text was updated successfully, but these errors were encountered: