} else if (sel instanceof JCFieldAccess) {
String name = ((JCFieldAccess) sel).getIdentifier().toString();
if ("super".equals(name)) {
SuperConstructorInvocation sci = new SuperConstructorInvocation();
fillList(node.getTypeArguments(), sci.rawConstructorTypeArguments(), FlagKey.TYPE_REFERENCE);
fillList(node.getArguments(), sci.rawArguments());
sci.rawQualifier(toTree(((JCFieldAccess) sel).getExpression()));
set(node, sci);
setConversionPositionInfo(sci, "super", getPosition(sel));
return;
}