Ejemplo n.º 1
0
        protected void EmitArgsThis(ZCMethodInfo zdesc, List <Exp> expArgs)
        {
            var        paramArr   = zdesc.ZParams;
            List <Exp> expArgsNew = CallAjuster.AdjustExps(paramArr, expArgs);

            EmitArgsExp(paramArr, expArgs.ToArray());
        }
Ejemplo n.º 2
0
        public void AdjustArgExps()
        {
            ConstructorInfo Constructor = SearchedZConstructor.Constructor;

            AdjustedArgExps = CallAjuster.AdjustExps(Constructor.GetParameters(), ArgExps);
        }