| 372 | } |
| 373 | |
| 374 | bool Element::hasInheritanceCycle() const |
| 375 | { |
| 376 | try |
| 377 | { |
| 378 | for (ConstElementPtr elem : traverseInheritance()) { } |
| 379 | } |
| 380 | catch (ExceptionFoundCycle&) |
| 381 | { |
| 382 | return true; |
| 383 | } |
| 384 | return false; |
| 385 | } |
| 386 | |
| 387 | bool Element::isEquivalent(ConstElementPtr rhs, const ElementEquivalenceOptions& options, string* message) const |
| 388 | { |
no outgoing calls
no test coverage detected