Skip to content

Commit 1884489

Browse files
committed
Added missing ***Vertex properties.
1 parent 2bfec2c commit 1884489

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pyVHDLModel/SyntaxModel.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1082,6 +1082,10 @@ def PackageBodies(self) -> Dict[str, 'PackageBody']:
10821082
"""Returns a list of all package body declarations declared in this library."""
10831083
return self._packageBodies
10841084

1085+
@property
1086+
def DependencyVertex(self) -> Vertex:
1087+
return self._dependencyVertex
1088+
10851089
def IterateDesignUnits(self, filter: DesignUnitKind = DesignUnitKind.All) -> Generator[DesignUnit, None, None]:
10861090
if DesignUnitKind.Context in filter:
10871091
for context in self._contexts.values():

0 commit comments

Comments
 (0)