| 288 | } |
| 289 | |
| 290 | bool NodeContainer::isPolyphonic() const |
| 291 | { |
| 292 | |
| 293 | if (auto n = dynamic_cast<NodeContainer*>(asNode()->getParentNode())) |
| 294 | { |
| 295 | return n->isPolyphonic(); |
| 296 | } |
| 297 | else |
| 298 | return asNode()->getRootNetwork()->isPolyphonic(); |
| 299 | } |
| 300 | |
| 301 | void NodeContainer::assign(const int index, var newValue) |
| 302 | { |
no test coverage detected