inOutSource method

Logic inOutSource(
  1. String name
)

The original source provided to the creation of the inOut port name via addInOut or addInOutArray.

Implementation

Logic inOutSource(String name) =>
    _inOutSources[name] ??
    (throw PortDoesNotExistException(
        '$name is not an inOut of this Module.'));