diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-08-01 07:36:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-08-01 07:36:43 +0200 |
commit | a358d58e8592316fa1421445e73531e00247744f (patch) | |
tree | 9f1d2580d13feaeb3d6d4e3aa8cea53a9b4c3cfd /python/libghdl/thin/vhdl | |
parent | c428e1f4c697d550a8e986aa2c1918a992826234 (diff) | |
download | ghdl-a358d58e8592316fa1421445e73531e00247744f.tar.gz ghdl-a358d58e8592316fa1421445e73531e00247744f.tar.bz2 ghdl-a358d58e8592316fa1421445e73531e00247744f.zip |
vhdl: add force and release tokens. For #1416
Diffstat (limited to 'python/libghdl/thin/vhdl')
-rw-r--r-- | python/libghdl/thin/vhdl/tokens.py | 108 |
1 files changed, 55 insertions, 53 deletions
diff --git a/python/libghdl/thin/vhdl/tokens.py b/python/libghdl/thin/vhdl/tokens.py index b38554d23..e66f97c27 100644 --- a/python/libghdl/thin/vhdl/tokens.py +++ b/python/libghdl/thin/vhdl/tokens.py @@ -165,56 +165,58 @@ class Tok: Context = 161 Cover = 162 Default = 163 - Parameter = 164 - Property = 165 - Restrict = 166 - Restrict_Guarantee = 167 - Sequence = 168 - Vmode = 169 - Vprop = 170 - Vunit = 171 - Across = 172 - Break = 173 - Limit = 174 - Nature = 175 - Noise = 176 - Procedural = 177 - Quantity = 178 - Reference = 179 - Spectrum = 180 - Subnature = 181 - Terminal = 182 - Through = 183 - Tolerance = 184 - Psl_Clock = 185 - Psl_Endpoint = 186 - Psl_Const = 187 - Psl_Boolean = 188 - Inf = 189 - Within = 190 - Abort = 191 - Before = 192 - Before_Em = 193 - Before_Un = 194 - Before_Em_Un = 195 - Always = 196 - Never = 197 - Eventually_Em = 198 - Next_Em = 199 - Next_A = 200 - Next_A_Em = 201 - Next_E = 202 - Next_E_Em = 203 - Next_Event = 204 - Next_Event_Em = 205 - Next_Event_A = 206 - Next_Event_A_Em = 207 - Next_Event_E = 208 - Next_Event_E_Em = 209 - Until_Em = 210 - Until_Un = 211 - Until_Em_Un = 212 - Prev = 213 - Stable = 214 - Fell = 215 - Rose = 216 + Force = 164 + Parameter = 165 + Property = 166 + Release = 167 + Restrict = 168 + Restrict_Guarantee = 169 + Sequence = 170 + Vmode = 171 + Vprop = 172 + Vunit = 173 + Across = 174 + Break = 175 + Limit = 176 + Nature = 177 + Noise = 178 + Procedural = 179 + Quantity = 180 + Reference = 181 + Spectrum = 182 + Subnature = 183 + Terminal = 184 + Through = 185 + Tolerance = 186 + Psl_Clock = 187 + Psl_Endpoint = 188 + Psl_Const = 189 + Psl_Boolean = 190 + Inf = 191 + Within = 192 + Abort = 193 + Before = 194 + Before_Em = 195 + Before_Un = 196 + Before_Em_Un = 197 + Always = 198 + Never = 199 + Eventually_Em = 200 + Next_Em = 201 + Next_A = 202 + Next_A_Em = 203 + Next_E = 204 + Next_E_Em = 205 + Next_Event = 206 + Next_Event_Em = 207 + Next_Event_A = 208 + Next_Event_A_Em = 209 + Next_Event_E = 210 + Next_Event_E_Em = 211 + Until_Em = 212 + Until_Un = 213 + Until_Em_Un = 214 + Prev = 215 + Stable = 216 + Fell = 217 + Rose = 218 |