コード例 #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);
 }