| 331 | } |
| 332 | |
| 333 | inline bool |
| 334 | Node::isCall(const std::string& id) { |
| 335 | if (Call* a = dynamic_cast<Call*>(this)) { |
| 336 | if (a->id == id) |
| 337 | return true; |
| 338 | } |
| 339 | return false; |
| 340 | } |
| 341 | |
| 342 | inline Call* |
| 343 | Node::getCall(void) { |
no outgoing calls
no test coverage detected