pathnameToAddress method

OccurrenceAddress? pathnameToAddress(
  1. String pathname
)

Convert a pathname (e.g. "Top/sub/clk" or "Top.sub.clk") to a OccurrenceAddress by walking the tree.

Delegates to OccurrenceAddress.tryFromPathname.

Implementation

OccurrenceAddress? pathnameToAddress(String pathname) =>
    OccurrenceAddress.tryFromPathname(pathname, root);