| 313 | } |
| 314 | |
| 315 | bool AttributeQualifier::IsMatch(const AttributeQualifier& other) const { |
| 316 | if (absl::holds_alternative<Kind>(value_) || |
| 317 | absl::holds_alternative<Kind>(other.value_)) { |
| 318 | return false; |
| 319 | } |
| 320 | return value_ == other.value_; |
| 321 | } |
| 322 | |
| 323 | absl::StatusOr<std::string> AttributeQualifier::AsString() const { |
| 324 | std::string result; |
no outgoing calls