Back to Intellij Community

GroovyLabeledStatement

plugins/groovy/groovy-psi/resources/inspectionDescriptions/GroovyLabeledStatement.html

2025.3-rc-2189 B
Original Source

Reports labels already used in parent workflow.

Example:

def list = ["foo"]
cycle:
for (element in list) {
  cycle: // confusing label repeat
  element.chars().forEach {
  }
}