d50c4d7211
In previous commits, renderValueParameter began to calculate its containing declaration. However, WrappedValueParameterDescriptor assumes that parent of IrParameter is IrFunction, which is not true for dispatch receiver parameters. The correct fix would be not to create WrappedValueParameterDescriptor for dispatch receivers at all and use WrappedReceiverParameterDescriptor instead. In this fix, I just moved parameter' containing declaration calculation inside specific option which is usually false, thus hiding the found problem.