diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-04 18:20:07 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-04 18:20:07 +0200 |
commit | e669bf61068a516e54e6547490164a54728d81aa (patch) | |
tree | 51b0d6cede6892102cb2b77aeca5160d2e46fa45 /python/libghdl/thin/vhdl/tokens.py | |
parent | 76482ce0e7ce6e03bc5e17e217ac6d8b6f075846 (diff) | |
download | ghdl-e669bf61068a516e54e6547490164a54728d81aa.tar.gz ghdl-e669bf61068a516e54e6547490164a54728d81aa.tar.bz2 ghdl-e669bf61068a516e54e6547490164a54728d81aa.zip |
vhdl: parse and analyze restrict directive.
Diffstat (limited to 'python/libghdl/thin/vhdl/tokens.py')
-rw-r--r-- | python/libghdl/thin/vhdl/tokens.py | 42 |
1 files changed, 22 insertions, 20 deletions
diff --git a/python/libghdl/thin/vhdl/tokens.py b/python/libghdl/thin/vhdl/tokens.py index 572c3906d..20cf3b7dd 100644 --- a/python/libghdl/thin/vhdl/tokens.py +++ b/python/libghdl/thin/vhdl/tokens.py @@ -181,23 +181,25 @@ class Tok: Psl_Sequence = 177 Psl_Endpoint = 178 Psl_Cover = 179 - Psl_Const = 180 - Psl_Boolean = 181 - Inf = 182 - Within = 183 - Abort = 184 - Before = 185 - Before_Em = 186 - Before_Un = 187 - Before_Em_Un = 188 - Until_Em = 189 - Until_Un = 190 - Until_Em_Un = 191 - Always = 192 - Never = 193 - Eventually = 194 - Next_A = 195 - Next_E = 196 - Next_Event = 197 - Next_Event_A = 198 - Next_Event_E = 199 + Psl_Restrict = 180 + Psl_Restrict_Guarantee = 181 + Psl_Const = 182 + Psl_Boolean = 183 + Inf = 184 + Within = 185 + Abort = 186 + Before = 187 + Before_Em = 188 + Before_Un = 189 + Before_Em_Un = 190 + Until_Em = 191 + Until_Un = 192 + Until_Em_Un = 193 + Always = 194 + Never = 195 + Eventually = 196 + Next_A = 197 + Next_E = 198 + Next_Event = 199 + Next_Event_A = 200 + Next_Event_E = 201 |