diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-09-01 11:02:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-09-02 20:40:55 +0200 |
commit | fdd89d0259d35d76c56770c74f6ffee8b5ebf239 (patch) | |
tree | b26d1ad5c2e388fcfa7859b53560f873d3cf9915 /python/libghdl/thin | |
parent | c6ee7f41e2f86d8d46cd559f32cd290b99b46178 (diff) | |
download | ghdl-fdd89d0259d35d76c56770c74f6ffee8b5ebf239.tar.gz ghdl-fdd89d0259d35d76c56770c74f6ffee8b5ebf239.tar.bz2 ghdl-fdd89d0259d35d76c56770c74f6ffee8b5ebf239.zip |
vhdl: renames Conditional_Expression to Conditional_Expression_Chain.
Diffstat (limited to 'python/libghdl/thin')
-rw-r--r-- | python/libghdl/thin/vhdl/nodes.py | 4 | ||||
-rw-r--r-- | python/libghdl/thin/vhdl/nodes_meta.py | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/python/libghdl/thin/vhdl/nodes.py b/python/libghdl/thin/vhdl/nodes.py index 3b99fafc4..580c543c1 100644 --- a/python/libghdl/thin/vhdl/nodes.py +++ b/python/libghdl/thin/vhdl/nodes.py @@ -2021,9 +2021,9 @@ Get_Expression = libghdl.vhdl__nodes__get_expression Set_Expression = libghdl.vhdl__nodes__set_expression -Get_Conditional_Expression = libghdl.vhdl__nodes__get_conditional_expression +Get_Conditional_Expression_Chain = libghdl.vhdl__nodes__get_conditional_expression_chain -Set_Conditional_Expression = libghdl.vhdl__nodes__set_conditional_expression +Set_Conditional_Expression_Chain = libghdl.vhdl__nodes__set_conditional_expression_chain Get_Allocator_Designated_Type = libghdl.vhdl__nodes__get_allocator_designated_type diff --git a/python/libghdl/thin/vhdl/nodes_meta.py b/python/libghdl/thin/vhdl/nodes_meta.py index 7e45ba28e..ec2cf03a8 100644 --- a/python/libghdl/thin/vhdl/nodes_meta.py +++ b/python/libghdl/thin/vhdl/nodes_meta.py @@ -273,7 +273,7 @@ class fields: Default_Binding_Indication = 209 Default_Configuration_Declaration = 210 Expression = 211 - Conditional_Expression = 212 + Conditional_Expression_Chain = 212 Allocator_Designated_Type = 213 Selected_Waveform_Chain = 214 Conditional_Waveform_Chain = 215 @@ -1092,8 +1092,8 @@ Has_Default_Configuration_Declaration =\ Has_Expression =\ libghdl.vhdl__nodes_meta__has_expression -Has_Conditional_Expression =\ - libghdl.vhdl__nodes_meta__has_conditional_expression +Has_Conditional_Expression_Chain =\ + libghdl.vhdl__nodes_meta__has_conditional_expression_chain Has_Allocator_Designated_Type =\ libghdl.vhdl__nodes_meta__has_allocator_designated_type |