| 665 | } |
| 666 | |
| 667 | std::string ConnectClauseImpl::target() const { |
| 668 | if (!ctx()) { |
| 669 | return ""; |
| 670 | } |
| 671 | const auto refs = ctx()->component_reference(); |
| 672 | if (refs.size() < 2) { |
| 673 | return ""; |
| 674 | } |
| 675 | return refs[1]->getText(); |
| 676 | } |
| 677 | |
| 678 | void ConnectClauseImpl::remove() { |
| 679 | if (m_owner) { |
nothing calls this directly
no test coverage detected