-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ | |
__email__ = "[email protected]" | ||
__copyright__ = "2016-2023, Patrick Lehmann" | ||
__license__ = "Apache License, Version 2.0" | ||
__version__ = "0.25.0" | ||
__version__ = "0.25.1" | ||
|
||
|
||
from enum import unique, Enum, Flag, auto | ||
|
@@ -64,7 +64,7 @@ | |
from pyVHDLModel.Exception import ArchitectureExistsInLibraryError, PackageExistsInLibraryError, PackageBodyExistsError, ConfigurationExistsInLibraryError | ||
from pyVHDLModel.Exception import ContextExistsInLibraryError, ReferencedLibraryNotExistingError | ||
from pyVHDLModel.Base import ModelEntity, NamedEntityMixin, DocumentedEntityMixin | ||
from pyVHDLModel.Symbol import AllPackageMembersReferenceSymbol, PackageMembersReferenceSymbol | ||
from pyVHDLModel.Symbol import AllPackageMembersReferenceSymbol, PackageMemberReferenceSymbol | ||
from pyVHDLModel.Concurrent import EntityInstantiation, ComponentInstantiation, ConfigurationInstantiation | ||
from pyVHDLModel.DesignUnit import DesignUnit, PrimaryUnit, Architecture, PackageBody, Context, Entity, Configuration, Package | ||
from pyVHDLModel.PSLModel import VerificationUnit, VerificationProperty, VerificationMode | ||
|
@@ -704,7 +704,7 @@ def LinkContexts(self) -> None: | |
if isinstance(symbol, AllPackageMembersReferenceSymbol): | ||
pass | ||
|
||
elif isinstance(symbol, PackageMembersReferenceSymbol): | ||
elif isinstance(symbol, PackageMemberReferenceSymbol): | ||
raise NotImplementedError() | ||
else: | ||
raise VHDLModelException() | ||
|
@@ -848,7 +848,7 @@ def LinkPackageReferences(self) -> None: | |
for componentIdentifier, component in package._components.items(): | ||
designUnit._namespace._elements[componentIdentifier] = component | ||
|
||
elif isinstance(packageMemeberSymbol, PackageMembersReferenceSymbol): | ||
elif isinstance(packageMemeberSymbol, PackageMemberReferenceSymbol): | ||
raise NotImplementedError() | ||
else: | ||
raise VHDLModelException() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters