Ejemplo n.º 1
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return another == this || _significant.IsContainedIn(another);
 }
Ejemplo n.º 2
0
 public bool Equals(AstDescriptor other)
 {
     return _significant.Equals(other._significant) && _index == other._index;
 }
Ejemplo n.º 3
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return false;
 }
Ejemplo n.º 4
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return(another == this || _significant.IsContainedIn(another));
 }
Ejemplo n.º 5
0
 public bool Equals(AstDescriptor other)
 {
     return(_significant.Equals(other._significant) && _index == other._index);
 }
Ejemplo n.º 6
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return(false);
 }