| 654 | } |
| 655 | |
| 656 | std::string ConnectClauseImpl::source() const { |
| 657 | if (!ctx()) { |
| 658 | return ""; |
| 659 | } |
| 660 | const auto refs = ctx()->component_reference(); |
| 661 | if (refs.empty()) { |
| 662 | return ""; |
| 663 | } |
| 664 | return refs[0]->getText(); |
| 665 | } |
| 666 | |
| 667 | std::string ConnectClauseImpl::target() const { |
| 668 | if (!ctx()) { |
nothing calls this directly
no test coverage detected