From 3c26dd63f093e156c9bf4143aeddafd3a4664ecc Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 28 Jun 2021 12:51:06 +0200 Subject: Reworked symbols. --- pyGHDL/dom/Symbol.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'pyGHDL/dom/Symbol.py') diff --git a/pyGHDL/dom/Symbol.py b/pyGHDL/dom/Symbol.py index af6c1beb6..be8dd362e 100644 --- a/pyGHDL/dom/Symbol.py +++ b/pyGHDL/dom/Symbol.py @@ -39,7 +39,6 @@ from pyVHDLModel.VHDLModel import ( SimpleSubTypeSymbol as VHDLModel_SimpleSubTypeSymbol, ConstrainedScalarSubTypeSymbol as VHDLModel_ConstrainedScalarSubTypeSymbol, ConstrainedCompositeSubTypeSymbol as VHDLModel_ConstrainedCompositeSubTypeSymbol, - EnumerationLiteralSymbol as VHDLModel_EnumerationLiteralSymbol, SimpleObjectOrFunctionCallSymbol as VHDLModel_SimpleObjectOrFunctionCallSymbol, IndexedObjectOrFunctionCallSymbol as VHDLModel_IndexedObjectOrFunctionCallSymbol, Constraint, @@ -60,13 +59,6 @@ class EntitySymbol(VHDLModel_EntitySymbol, DOMMixin): DOMMixin.__init__(self, node) -@export -class EnumerationLiteralSymbol(VHDLModel_EnumerationLiteralSymbol, DOMMixin): - def __init__(self, node: Iir, literalName: Name): - super().__init__(literalName) - DOMMixin.__init__(self, node) - - @export class SimpleSubTypeSymbol(VHDLModel_SimpleSubTypeSymbol, DOMMixin): def __init__(self, node: Iir, subTypeName: Name): -- cgit v1.2.3