diff options
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-tokens.adb | 4 | ||||
-rw-r--r-- | src/vhdl/vhdl-tokens.ads | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-tokens.adb b/src/vhdl/vhdl-tokens.adb index c4550af82..eb98894f3 100644 --- a/src/vhdl/vhdl-tokens.adb +++ b/src/vhdl/vhdl-tokens.adb @@ -360,10 +360,14 @@ package body Vhdl.Tokens is return "cover"; when Tok_Default => return "default"; + when Tok_Force => + return "force"; when Tok_Parameter => return "parameter"; when Tok_Property => return "property"; + when Tok_Release => + return "release"; when Tok_Restrict => return "restrict"; when Tok_Restrict_Guarantee => diff --git a/src/vhdl/vhdl-tokens.ads b/src/vhdl/vhdl-tokens.ads index 373b92acc..6796b204a 100644 --- a/src/vhdl/vhdl-tokens.ads +++ b/src/vhdl/vhdl-tokens.ads @@ -242,8 +242,10 @@ package Vhdl.Tokens is Tok_Context, Tok_Cover, Tok_Default, + Tok_Force, Tok_Parameter, Tok_Property, + Tok_Release, Tok_Restrict, Tok_Restrict_Guarantee, Tok_Sequence, |