diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-12-26 07:14:25 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-12-26 07:14:25 +0100 |
commit | 8a5fe99b279b1ce1ea7fe4313a24d0f3a399149d (patch) | |
tree | cf14414d9b18d8bb8ec59ac6b89ef8ebc3e28933 /python/libghdl/thin/vhdl/nodes_meta.py | |
parent | a24642ace5f43509c40b5a94927a1cff865f2ece (diff) | |
download | ghdl-8a5fe99b279b1ce1ea7fe4313a24d0f3a399149d.tar.gz ghdl-8a5fe99b279b1ce1ea7fe4313a24d0f3a399149d.tar.bz2 ghdl-8a5fe99b279b1ce1ea7fe4313a24d0f3a399149d.zip |
vhdl: add Has_Delay_Machanism for optional 'inertial' printing.
Diffstat (limited to 'python/libghdl/thin/vhdl/nodes_meta.py')
-rw-r--r-- | python/libghdl/thin/vhdl/nodes_meta.py | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/python/libghdl/thin/vhdl/nodes_meta.py b/python/libghdl/thin/vhdl/nodes_meta.py index e11dc5b78..355af9309 100644 --- a/python/libghdl/thin/vhdl/nodes_meta.py +++ b/python/libghdl/thin/vhdl/nodes_meta.py @@ -380,19 +380,20 @@ class fields: Has_Identifier_List = 316 Has_Mode = 317 Has_Class = 318 - Suspend_Flag = 319 - Is_Ref = 320 - Is_Forward_Ref = 321 - Psl_Property = 322 - Psl_Sequence = 323 - Psl_Declaration = 324 - Psl_Expression = 325 - Psl_Boolean = 326 - PSL_Clock = 327 - PSL_NFA = 328 - PSL_Nbr_States = 329 - PSL_Clock_Sensitivity = 330 - PSL_EOS_Flag = 331 + Has_Delay_Mechanism = 319 + Suspend_Flag = 320 + Is_Ref = 321 + Is_Forward_Ref = 322 + Psl_Property = 323 + Psl_Sequence = 324 + Psl_Declaration = 325 + Psl_Expression = 326 + Psl_Boolean = 327 + PSL_Clock = 328 + PSL_NFA = 329 + PSL_Nbr_States = 330 + PSL_Clock_Sensitivity = 331 + PSL_EOS_Flag = 332 Get_Boolean = libghdl.vhdl__nodes_meta__get_boolean @@ -1415,6 +1416,9 @@ Has_Has_Mode =\ Has_Has_Class =\ libghdl.vhdl__nodes_meta__has_has_class +Has_Has_Delay_Mechanism =\ + libghdl.vhdl__nodes_meta__has_has_delay_mechanism + Has_Suspend_Flag =\ libghdl.vhdl__nodes_meta__has_suspend_flag |