signals property
An Iterable of all Logic
s contained within this Module, including
inputs, outputs, and internal signals of this Module.
This does not contain any signals within subModules.
Implementation
Iterable<Logic> get signals => UnmodifiableListView([
..._inputs.values,
..._outputs.values,
..._inOuts.values,
...internalSignals,
]);