diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-04-20 07:49:03 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-04-20 12:19:48 +0200 |
commit | cb72a1834f160d95d026b7e466886fd95fd82146 (patch) | |
tree | 87cd0fff5a8ce03b05b8e6a0a0129b60de90fe61 /python/libghdl/thin/vhdl | |
parent | b6d42a577f4ee5f2084a165b0cdf66cadcc878a1 (diff) | |
download | ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.tar.gz ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.tar.bz2 ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.zip |
types: introduce Direction_Type, which replaces Iir_Direction.
Global renaming.
Diffstat (limited to 'python/libghdl/thin/vhdl')
-rw-r--r-- | python/libghdl/thin/vhdl/nodes.py | 5 | ||||
-rw-r--r-- | python/libghdl/thin/vhdl/nodes_meta.py | 18 |
2 files changed, 9 insertions, 14 deletions
diff --git a/python/libghdl/thin/vhdl/nodes.py b/python/libghdl/thin/vhdl/nodes.py index 4f93775a0..1df7f9445 100644 --- a/python/libghdl/thin/vhdl/nodes.py +++ b/python/libghdl/thin/vhdl/nodes.py @@ -962,11 +962,6 @@ class Iir_Constraint: Fully_Constrained = 2 -class Iir_Direction: - To = 0 - Downto = 1 - - class Iir_Delay_Mechanism: Inertial_Delay = 0 Transport_Delay = 1 diff --git a/python/libghdl/thin/vhdl/nodes_meta.py b/python/libghdl/thin/vhdl/nodes_meta.py index e8091798d..e2a9d7eb0 100644 --- a/python/libghdl/thin/vhdl/nodes_meta.py +++ b/python/libghdl/thin/vhdl/nodes_meta.py @@ -18,13 +18,13 @@ class types: Boolean = 0 Date_State_Type = 1 Date_Type = 2 - File_Checksum_Id = 3 - Fp64 = 4 - Iir = 5 - Iir_All_Sensitized = 6 - Iir_Constraint = 7 - Iir_Delay_Mechanism = 8 - Iir_Direction = 9 + Direction_Type = 3 + File_Checksum_Id = 4 + Fp64 = 5 + Iir = 6 + Iir_All_Sensitized = 7 + Iir_Constraint = 8 + Iir_Delay_Mechanism = 9 Iir_Flist = 10 Iir_Index32 = 11 Iir_Int32 = 12 @@ -430,6 +430,8 @@ Get_Date_State_Type = libghdl.vhdl__nodes_meta__get_date_state_type Get_Date_Type = libghdl.vhdl__nodes_meta__get_date_type +Get_Direction_Type = libghdl.vhdl__nodes_meta__get_direction_type + Get_File_Checksum_Id = libghdl.vhdl__nodes_meta__get_file_checksum_id Get_Fp64 = libghdl.vhdl__nodes_meta__get_fp64 @@ -442,8 +444,6 @@ Get_Iir_Constraint = libghdl.vhdl__nodes_meta__get_iir_constraint Get_Iir_Delay_Mechanism = libghdl.vhdl__nodes_meta__get_iir_delay_mechanism -Get_Iir_Direction = libghdl.vhdl__nodes_meta__get_iir_direction - Get_Iir_Flist = libghdl.vhdl__nodes_meta__get_iir_flist Get_Iir_Index32 = libghdl.vhdl__nodes_meta__get_iir_index32 |