Exemplo n.º 1
0
 internal DerivedType(string opName, float wide, BasicType underlying, BoxedType boxed, params string[] names) : base(opName, wide, boxed, names)
 {
     UnderlyingType = underlying;
 }
Exemplo n.º 2
0
 public void SetBaseType(BasicType type)
 {
     BaseType   = type;
     StoredType = type;
 }
Exemplo n.º 3
0
 internal DerivedType(float wide, BasicType underlying, BoxedType boxed, params string[] names) : this(underlying.OpName, wide, underlying, boxed, names)
 {
 }