|
48 | 48 | |
49 | 49 | __copyright__ = "2016-2023, Patrick Lehmann" |
50 | 50 | __license__ = "Apache License, Version 2.0" |
51 | | -__version__ = "0.25.2" |
| 51 | +__version__ = "0.26.0" |
52 | 52 |
|
53 | 53 |
|
54 | 54 | from enum import unique, Enum, Flag, auto |
|
64 | 64 | from pyVHDLModel.Exception import ArchitectureExistsInLibraryError, PackageExistsInLibraryError, PackageBodyExistsError, ConfigurationExistsInLibraryError |
65 | 65 | from pyVHDLModel.Exception import ContextExistsInLibraryError, ReferencedLibraryNotExistingError |
66 | 66 | from pyVHDLModel.Base import ModelEntity, NamedEntityMixin, DocumentedEntityMixin |
67 | | -from pyVHDLModel.Object import Signal |
| 67 | +from pyVHDLModel.Object import Obj, Signal |
68 | 68 | from pyVHDLModel.Symbol import AllPackageMembersReferenceSymbol, PackageMemberReferenceSymbol |
69 | 69 | from pyVHDLModel.Concurrent import EntityInstantiation, ComponentInstantiation, ConfigurationInstantiation |
70 | 70 | from pyVHDLModel.DesignUnit import DesignUnit, PrimaryUnit, Architecture, PackageBody, Context, Entity, Configuration, Package |
@@ -403,7 +403,7 @@ class Design(ModelEntity): |
403 | 403 | _dependencyGraph: Graph[None, None, None, None, None, None, None, None, str, DesignUnit, None, None, None, None, None, None, None, None, None, None, None, None, None] #: The graph of all dependencies in the designs. |
404 | 404 | _compileOrderGraph: Graph[None, None, None, None, None, None, None, None, None, 'Document', None, None, None, None, None, None, None, None, None, None, None, None, None] #: A graph derived from dependency graph containing the order of documents for compilation. |
405 | 405 | _hierarchyGraph: Graph[None, None, None, None, None, None, None, None, str, DesignUnit, None, None, None, None, None, None, None, None, None, None, None, None, None] #: A graph derived from dependency graph containing the design hierarchy. |
406 | | - _objectGraph: Graph[None, None, None, None, None, None, None, None, str, Object, None, None, None, None, None, None, None, None, None, None, None, None, None] #: The graph of all types and objects in the design. |
| 406 | + _objectGraph: Graph[None, None, None, None, None, None, None, None, str, Obj, None, None, None, None, None, None, None, None, None, None, None, None, None] #: The graph of all types and objects in the design. |
407 | 407 | _toplevel: Union[Entity, Configuration] #: When computed, the toplevel design unit is cached in this field. |
408 | 408 |
|
409 | 409 | def __init__(self, name: str = None): |
|
0 commit comments