in javac-ast-extension/src/org/jetbrains/jps/javac/ast/api/JavacRef.java [301:309]
private static boolean checkEnclosingElement(Element element) {
Element enclosingElement = element.getEnclosingElement();
if (enclosingElement == null) return false;
TypeMirror type = enclosingElement.asType();
if (!isValidType(type)) {
return false;
}
return true;
}