}
}
}
private void annotateExecutable(PsiElement psiElement, AnnotationHolder holder) {
ExecutablePsiElement executable = (ExecutablePsiElement) psiElement;
if (!executable.isNestedExecutable()) {
StatementExecutionProcessor executionProcessor = executable.getExecutionProcessor();
if (executionProcessor != null) {
Annotation annotation = holder.createInfoAnnotation(psiElement, null);
annotation.setGutterIconRenderer(new StatementGutterRenderer(executionProcessor));
}
}