} else {
parent = parent.getParent();
}
}
if (method != null) {
GrModifierList modifierList = method.getModifierList();
boolean foundUnroll = false;
for (GrAnnotation annotation : modifierList.getAnnotations()) {
if (SpockConstants.UNROLL_ANNOTATION.equals(annotation.getShortName())) {
foundUnroll = true;
}
}
if (!foundUnroll) {