@@ -1721,9 +1721,9 @@ class RangeSubtype(BaseConstraint):
1721
1721
class Obj (ModelEntity , NamedEntity ):
1722
1722
_subType : SubTypeOrSymbol
1723
1723
1724
- def __init__ (self , namidentifier : str , subType : SubTypeOrSymbol ):
1724
+ def __init__ (self , identifier : str , subType : SubTypeOrSymbol ):
1725
1725
super ().__init__ ()
1726
- NamedEntity .__init__ (self , namidentifier )
1726
+ NamedEntity .__init__ (self , identifier )
1727
1727
1728
1728
self ._subType = subType
1729
1729
@@ -1755,17 +1755,17 @@ class BaseConstant(Obj):
1755
1755
1756
1756
@export
1757
1757
class Constant (BaseConstant , WithDefaultExpressionMixin ):
1758
- def __init__ (self , namidentifier : str , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1759
- super ().__init__ (namidentifier , subType )
1758
+ def __init__ (self , identifier : str , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1759
+ super ().__init__ (identifier , subType )
1760
1760
WithDefaultExpressionMixin .__init__ (self , defaultExpression )
1761
1761
1762
1762
1763
1763
@export
1764
1764
class DeferredConstant (BaseConstant ):
1765
1765
_constantReference : Constant
1766
1766
1767
- def __init__ (self , namidentifier : str , subType : SubTypeOrSymbol ):
1768
- super ().__init__ (namidentifier , subType )
1767
+ def __init__ (self , identifier : str , subType : SubTypeOrSymbol ):
1768
+ super ().__init__ (identifier , subType )
1769
1769
1770
1770
@property
1771
1771
def ConstantReference (self ) -> Constant :
@@ -1774,8 +1774,8 @@ def ConstantReference(self) -> Constant:
1774
1774
1775
1775
@export
1776
1776
class Variable (Obj , WithDefaultExpressionMixin ):
1777
- def __init__ (self , namidentifier : str , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1778
- super ().__init__ (namidentifier , subType )
1777
+ def __init__ (self , identifier : str , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1778
+ super ().__init__ (identifier , subType )
1779
1779
WithDefaultExpressionMixin .__init__ (self , defaultExpression )
1780
1780
1781
1781
@@ -1786,8 +1786,8 @@ class SharedVariable(Obj):
1786
1786
1787
1787
@export
1788
1788
class Signal (Obj , WithDefaultExpressionMixin ):
1789
- def __init__ (self , namidentifier : str , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1790
- super (Signal , self ).__init__ (namidentifier , subType )
1789
+ def __init__ (self , identifier : str , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1790
+ super (Signal , self ).__init__ (identifier , subType )
1791
1791
WithDefaultExpressionMixin .__init__ (self , defaultExpression )
1792
1792
1793
1793
@@ -1964,8 +1964,8 @@ class ParameterInterfaceItem(InterfaceItem):
1964
1964
1965
1965
@export
1966
1966
class GenericConstantInterfaceItem (Constant , GenericInterfaceItem , InterfaceItemWithMode ):
1967
- def __init__ (self , namidentifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1968
- super ().__init__ (namidentifier , subType , defaultExpression )
1967
+ def __init__ (self , identifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
1968
+ super ().__init__ (identifier , subType , defaultExpression )
1969
1969
GenericInterfaceItem .__init__ (self )
1970
1970
InterfaceItemWithMode .__init__ (self , mode )
1971
1971
@@ -2005,39 +2005,39 @@ def __init__(self, identifier: str):
2005
2005
2006
2006
@export
2007
2007
class PortSignalInterfaceItem (Signal , PortInterfaceItem ):
2008
- def __init__ (self , namidentifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2009
- super ().__init__ (namidentifier , subType , defaultExpression )
2008
+ def __init__ (self , identifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2009
+ super ().__init__ (identifier , subType , defaultExpression )
2010
2010
PortInterfaceItem .__init__ (self , mode )
2011
2011
2012
2012
2013
2013
@export
2014
2014
class ParameterConstantInterfaceItem (Constant , ParameterInterfaceItem , InterfaceItemWithMode ):
2015
- def __init__ (self , namidentifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2016
- super ().__init__ (namidentifier , subType , defaultExpression )
2015
+ def __init__ (self , identifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2016
+ super ().__init__ (identifier , subType , defaultExpression )
2017
2017
ParameterInterfaceItem .__init__ (self )
2018
2018
InterfaceItemWithMode .__init__ (self , mode )
2019
2019
2020
2020
2021
2021
@export
2022
2022
class ParameterVariableInterfaceItem (Variable , ParameterInterfaceItem , InterfaceItemWithMode ):
2023
- def __init__ (self , namidentifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2024
- super ().__init__ (namidentifier , subType , defaultExpression )
2023
+ def __init__ (self , identifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2024
+ super ().__init__ (identifier , subType , defaultExpression )
2025
2025
ParameterInterfaceItem .__init__ (self )
2026
2026
InterfaceItemWithMode .__init__ (self , mode )
2027
2027
2028
2028
2029
2029
@export
2030
2030
class ParameterSignalInterfaceItem (Signal , ParameterInterfaceItem , InterfaceItemWithMode ):
2031
- def __init__ (self , namidentifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2032
- super ().__init__ (namidentifier , subType , defaultExpression )
2031
+ def __init__ (self , identifier : str , mode : Mode , subType : SubTypeOrSymbol , defaultExpression : Expression = None ):
2032
+ super ().__init__ (identifier , subType , defaultExpression )
2033
2033
ParameterInterfaceItem .__init__ (self )
2034
2034
InterfaceItemWithMode .__init__ (self , mode )
2035
2035
2036
2036
2037
2037
@export
2038
2038
class ParameterFileInterfaceItem (File , ParameterInterfaceItem ):
2039
- def __init__ (self , namidentifier : str , subType : SubTypeOrSymbol ):
2040
- super ().__init__ (namidentifier , subType )
2039
+ def __init__ (self , identifier : str , subType : SubTypeOrSymbol ):
2040
+ super ().__init__ (identifier , subType )
2041
2041
ParameterInterfaceItem .__init__ (self )
2042
2042
2043
2043
# class GenericItem(ModelEntity):
0 commit comments