if (sel instanceof JCIdent) {
String name = ((JCIdent) sel).getName().toString();
if ("this".equals(name)) {
AlternateConstructorInvocation aci = new AlternateConstructorInvocation();
fillList(node.getTypeArguments(), aci.rawConstructorTypeArguments(), FlagKey.TYPE_REFERENCE);
fillList(node.getArguments(), aci.rawArguments());
set(node, aci);
setConversionPositionInfo(aci, "this", getPosition(sel));
return;
}