| 782 | } |
| 783 | |
| 784 | List<WireConnection> Object::connectionsForNode(WireNode wireNode) const { |
| 785 | if (wireNode.direction == WireDirection::Input) |
| 786 | return m_inputNodes.at(wireNode.nodeIndex).connections.get(); |
| 787 | else |
| 788 | return m_outputNodes.at(wireNode.nodeIndex).connections.get(); |
| 789 | } |
| 790 | |
| 791 | bool Object::nodeState(WireNode wireNode) const { |
| 792 | if (wireNode.direction == WireDirection::Input) |
no test coverage detected