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