if(methodRef.isConstructor()) {
//this is this() or super() call
MethodCall methodCall = new MethodCall(MethodCall.CALL_DIRECT,
methodRef.getClassName(),
methodRef.getName());
Renderable entity = methodCall;
methodCall.setConstructorCall(true);
if(smaliClass.getSuperClassName().equals(methodRef.getClassName()))
methodCall.setSuperCall(true);
else