diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-21 15:48:35 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-22 12:26:59 +0200 |
commit | ed99fae7f13db8d5c3e95e935e32db825313b56a (patch) | |
tree | 2e58bf9b63f3e3214fc00cda3e8368697539b56b /pyGHDL/cli | |
parent | ec37f2b5efe56d442ea51d3e10d16742f3cd4bce (diff) | |
download | ghdl-ed99fae7f13db8d5c3e95e935e32db825313b56a.tar.gz ghdl-ed99fae7f13db8d5c3e95e935e32db825313b56a.tar.bz2 ghdl-ed99fae7f13db8d5c3e95e935e32db825313b56a.zip |
Prepared handling of functions, types, subtypes and aliases.
Diffstat (limited to 'pyGHDL/cli')
-rwxr-xr-x | pyGHDL/cli/DOM.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyGHDL/cli/DOM.py b/pyGHDL/cli/DOM.py index 3d0be2af9..8f9c58edc 100755 --- a/pyGHDL/cli/DOM.py +++ b/pyGHDL/cli/DOM.py @@ -7,7 +7,7 @@ from pathlib import Path from pydecor import export -from pyGHDL.dom import Misc +from pyGHDL.dom import NonStandard from pyGHDL import GHDLBaseException __all__ = [] @@ -18,13 +18,13 @@ from pyGHDL.dom.formatting.prettyprint import PrettyPrint @export class Application: - _design: Misc.Design + _design: NonStandard.Design def __init__(self): - self._design = Misc.Design() + self._design = NonStandard.Design() def addFile(self, filename: Path, library: str): - document = Misc.Document(filename) + document = NonStandard.Document(filename) self._design.Documents.append(document) def prettyPrint(self): |