Exemplo n.º 1
0
        public override void MutateHoistedGenericType(AnonymousMethodStorey storey)
        {
            if (delegate_instance_expression != null)
            {
                delegate_instance_expression.MutateHoistedGenericType(storey);
            }

            delegate_method    = storey.MutateGenericMethod(delegate_method);
            constructor_method = storey.MutateConstructor(constructor_method);
        }
Exemplo n.º 2
0
        public override void MutateHoistedGenericType(AnonymousMethodStorey storey)
        {
            method = storey.MutateGenericMethod(method);
            type   = storey.MutateType(type);

            if (Arguments != null)
            {
                Arguments.MutateHoistedGenericType(storey);
            }

            InstanceExpr.MutateHoistedGenericType(storey);
        }
Exemplo n.º 3
0
 public override void MutateHoistedGenericType(AnonymousMethodStorey storey)
 {
     expr.MutateHoistedGenericType(storey);
 }
Exemplo n.º 4
0
 public override void MutateHoistedGenericType(AnonymousMethodStorey storey)
 {
     source.MutateHoistedGenericType(storey);
     target.MutateHoistedGenericType(storey);
     type = storey.MutateType(type);
 }