diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-11-03 08:03:12 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-11-03 22:10:05 +0100 |
commit | c56db23368ecb4df5eaef3920a46d12150235070 (patch) | |
tree | 6d8f7dab0b36ac6f6ea7ea8b54b235babb8078b8 /pyGHDL/libghdl/vhdl/tokens.py | |
parent | eb2b7a950937f5f414c4652514e66e31549bc8bd (diff) | |
download | ghdl-c56db23368ecb4df5eaef3920a46d12150235070.tar.gz ghdl-c56db23368ecb4df5eaef3920a46d12150235070.tar.bz2 ghdl-c56db23368ecb4df5eaef3920a46d12150235070.zip |
vhdl: add tok_inherit. Preliminary work for #1899
Diffstat (limited to 'pyGHDL/libghdl/vhdl/tokens.py')
-rw-r--r-- | pyGHDL/libghdl/vhdl/tokens.py | 105 |
1 files changed, 53 insertions, 52 deletions
diff --git a/pyGHDL/libghdl/vhdl/tokens.py b/pyGHDL/libghdl/vhdl/tokens.py index ed2e9f9dc..9e347eff8 100644 --- a/pyGHDL/libghdl/vhdl/tokens.py +++ b/pyGHDL/libghdl/vhdl/tokens.py @@ -182,55 +182,56 @@ class Tok(IntEnum): Restrict = 171 Restrict_Guarantee = 172 Sequence = 173 - Vmode = 174 - Vprop = 175 - Vunit = 176 - Across = 177 - Break = 178 - Limit = 179 - Nature = 180 - Noise = 181 - Procedural = 182 - Quantity = 183 - Reference = 184 - Spectrum = 185 - Subnature = 186 - Terminal = 187 - Through = 188 - Tolerance = 189 - Psl_Clock = 190 - Psl_Endpoint = 191 - Psl_Const = 192 - Psl_Boolean = 193 - Inf = 194 - Within = 195 - Abort = 196 - Async_Abort = 197 - Sync_Abort = 198 - Before = 199 - Before_Em = 200 - Before_Un = 201 - Before_Em_Un = 202 - Always = 203 - Never = 204 - Eventually_Em = 205 - Next_Em = 206 - Next_A = 207 - Next_A_Em = 208 - Next_E = 209 - Next_E_Em = 210 - Next_Event = 211 - Next_Event_Em = 212 - Next_Event_A = 213 - Next_Event_A_Em = 214 - Next_Event_E = 215 - Next_Event_E_Em = 216 - Until_Em = 217 - Until_Un = 218 - Until_Em_Un = 219 - Prev = 220 - Stable = 221 - Fell = 222 - Rose = 223 - Onehot = 224 - Onehot0 = 225 + Inherit = 174 + Vmode = 175 + Vprop = 176 + Vunit = 177 + Across = 178 + Break = 179 + Limit = 180 + Nature = 181 + Noise = 182 + Procedural = 183 + Quantity = 184 + Reference = 185 + Spectrum = 186 + Subnature = 187 + Terminal = 188 + Through = 189 + Tolerance = 190 + Psl_Clock = 191 + Psl_Endpoint = 192 + Psl_Const = 193 + Psl_Boolean = 194 + Inf = 195 + Within = 196 + Abort = 197 + Async_Abort = 198 + Sync_Abort = 199 + Before = 200 + Before_Em = 201 + Before_Un = 202 + Before_Em_Un = 203 + Always = 204 + Never = 205 + Eventually_Em = 206 + Next_Em = 207 + Next_A = 208 + Next_A_Em = 209 + Next_E = 210 + Next_E_Em = 211 + Next_Event = 212 + Next_Event_Em = 213 + Next_Event_A = 214 + Next_Event_A_Em = 215 + Next_Event_E = 216 + Next_Event_E_Em = 217 + Until_Em = 218 + Until_Un = 219 + Until_Em_Un = 220 + Prev = 221 + Stable = 222 + Fell = 223 + Rose = 224 + Onehot = 225 + Onehot0 = 226 |