public ProxyMethodParameterCodec(MethodParameterDescription description)
 {
     type     = description.Type;
     way      = description.Way;
     argIndex = description.Index + 1;
     codec    = new IndirectCodec(type);
     emitLoad = description.Way == MethodParameterWay.Val
         ? Loaders.Argument(argIndex)
         : Loaders.ArgumentRef(argIndex, description.Type);
 }