readInvocationParams(invocation, params, paramTypes);
return invocation;
}
if (accessorNode instanceof ConstructorAccessor) {
ConstructorAccessor constructorAccessor = (ConstructorAccessor)accessorNode;
Constructor constructor = getFieldValue(ConstructorAccessor.class, "constructor", constructorAccessor);
ConstructorInvocation invocation = new ConstructorInvocation(constructor);
ExecutableStatement[] params = getFieldValue(ConstructorAccessor.class, "parms", constructorAccessor);
Class[] paramTypes = getFieldValue(ConstructorAccessor.class, "parmTypes", constructorAccessor);
readInvocationParams(invocation, params, paramTypes);