diff options
| author | Tristan Gingold <tgingold@free.fr> | 2022-07-21 06:45:24 +0200 |
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2022-07-21 06:45:24 +0200 |
| commit | 341a8698ccb6b795d46b9570bac06e240c7664de (patch) | |
| tree | f818881d50e3da9fe055cbf3a6ce4c2472e16aaf /pyGHDL/libghdl/vhdl/nodes_meta.py | |
| parent | f440e1b0289a1f969b9190a11831e384b911db0e (diff) | |
| download | ghdl-341a8698ccb6b795d46b9570bac06e240c7664de.tar.gz ghdl-341a8698ccb6b795d46b9570bac06e240c7664de.tar.bz2 ghdl-341a8698ccb6b795d46b9570bac06e240c7664de.zip | |
vhdl-nodes: renaming.
Node Iir_Kind_Signal_Attribute_Declaration is now
Iir_Kind_Attribute_Implicit_Declaration
Will also handle quantities.
Diffstat (limited to 'pyGHDL/libghdl/vhdl/nodes_meta.py')
| -rw-r--r-- | pyGHDL/libghdl/vhdl/nodes_meta.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes_meta.py b/pyGHDL/libghdl/vhdl/nodes_meta.py index f122e2dd1..dd43cc075 100644 --- a/pyGHDL/libghdl/vhdl/nodes_meta.py +++ b/pyGHDL/libghdl/vhdl/nodes_meta.py @@ -366,7 +366,7 @@ class fields(IntEnum): Guard_Expression = 246 Guard_Decl = 247 Guard_Sensitivity_List = 248 - Signal_Attribute_Chain = 249 + Attribute_Implicit_Chain = 249 Block_Block_Configuration = 250 Package_Header = 251 Block_Header = 252 @@ -416,7 +416,7 @@ class fields(IntEnum): Parameter_3 = 296 Parameter_4 = 297 Attr_Chain = 298 - Signal_Attribute_Declaration = 299 + Attribute_Implicit_Declaration = 299 Actual_Type = 300 Actual_Type_Definition = 301 Association_Chain = 302 @@ -2122,8 +2122,8 @@ def Has_Guard_Sensitivity_List(kind: IirKind) -> bool: @export -@BindToLibGHDL("vhdl__nodes_meta__has_signal_attribute_chain") -def Has_Signal_Attribute_Chain(kind: IirKind) -> bool: +@BindToLibGHDL("vhdl__nodes_meta__has_attribute_implicit_chain") +def Has_Attribute_Implicit_Chain(kind: IirKind) -> bool: """""" @@ -2422,8 +2422,8 @@ def Has_Attr_Chain(kind: IirKind) -> bool: @export -@BindToLibGHDL("vhdl__nodes_meta__has_signal_attribute_declaration") -def Has_Signal_Attribute_Declaration(kind: IirKind) -> bool: +@BindToLibGHDL("vhdl__nodes_meta__has_attribute_implicit_declaration") +def Has_Attribute_Implicit_Declaration(kind: IirKind) -> bool: """""" |
