public ManagedPointerTypeReference(Module moduleBeingBuilt, RefTypeSymbol underlyingRefType)
            : base(moduleBeingBuilt)
        {
            Contract.ThrowIfNull(underlyingRefType);

            this.underlyingRefType = underlyingRefType;
        }
Exemple #2
0
        public ManagedPointerTypeReference(Module moduleBeingBuilt, RefTypeSymbol underlyingRefType)
            : base(moduleBeingBuilt)
        {
            Contract.ThrowIfNull(underlyingRefType);

            this.underlyingRefType = underlyingRefType;
        }
 public override Microsoft.Cci.IReference VisitRefType(RefTypeSymbol symbol, bool a)
 {
     return Translate(symbol);
 }
 internal Microsoft.Cci.IManagedPointerTypeReference Translate(RefTypeSymbol symbol)
 {
     return symbol;
 }
Exemple #5
0
 public override Microsoft.Cci.IReference VisitRefType(RefTypeSymbol symbol, bool a)
 {
     return(Translate(symbol));
 }
Exemple #6
0
 internal Microsoft.Cci.IManagedPointerTypeReference Translate(RefTypeSymbol symbol)
 {
     return(symbol);
 }