port method

InterfacePortReference port(
  1. String portRef
)

Gets a reference to a specific port within this interface.

The portRef can be either a simple port name (e.g., "data") or include slicing/indexing syntax (e.g., "data7:0", "addr3").

Returns either a StandardInterfacePortReference for simple port names or a SliceInterfacePortReference for sliced access.

Implementation

InterfacePortReference port(String portRef) =>
    tryPort(portRef) ??
    (throw RohdBridgeException('Port $portRef not found on $this'));