private bool Equals(IntrinsicObjectTypeSymbol other)
 {
     return base.Equals(other) && PredefinedType == other.PredefinedType;
 }
Example #2
0
 public BoundObjectType(IntrinsicObjectTypeSymbol objectSymbol)
     : base(BoundNodeKind.IntrinsicObjectType, objectSymbol)
 {
     ObjectSymbol = objectSymbol;
 }
Example #3
0
 private bool Equals(IntrinsicObjectTypeSymbol other)
 {
     return(base.Equals(other) && PredefinedType == other.PredefinedType);
 }