Example #1
0
 public bool Equals(ParenCapture other)
 {
     return(_number == other._number && _index == other._index && string.Equals(_value, other._value));
 }
Example #2
0
 public void AddCapture(ParenCapture capture)
 {
     _captures.Add(capture);
 }
Example #3
0
 public void RemoveCapture(ParenCapture capture)
 {
     _captures.Remove(capture);
 }
Example #4
0
 public bool Equals(ParenCapture other)
 {
     return _number == other._number && _index == other._index && string.Equals(_value, other._value);
 }