public bool Equals(ParenCapture other) { return(_number == other._number && _index == other._index && string.Equals(_value, other._value)); }
public void AddCapture(ParenCapture capture) { _captures.Add(capture); }
public void RemoveCapture(ParenCapture capture) { _captures.Remove(capture); }
public bool Equals(ParenCapture other) { return _number == other._number && _index == other._index && string.Equals(_value, other._value); }