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

            this.underlyingRefType = underlyingRefType;
        }
Example #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;
 }
Example #5
0
 public override Microsoft.Cci.IReference VisitRefType(RefTypeSymbol symbol, bool a)
 {
     return(Translate(symbol));
 }
Example #6
0
 internal Microsoft.Cci.IManagedPointerTypeReference Translate(RefTypeSymbol symbol)
 {
     return(symbol);
 }