Пример #1
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return another == this || _significant.IsContainedIn(another);
 }
Пример #2
0
 public bool Equals(AstDescriptor other)
 {
     return _significant.Equals(other._significant) && _index == other._index;
 }
Пример #3
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return false;
 }
Пример #4
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return(another == this || _significant.IsContainedIn(another));
 }
Пример #5
0
 public bool Equals(AstDescriptor other)
 {
     return(_significant.Equals(other._significant) && _index == other._index);
 }
Пример #6
0
 public bool IsContainedIn(AstDescriptor another)
 {
     return(false);
 }