diff options
Diffstat (limited to 'src/vhdl/vhdl-parse.adb')
-rw-r--r-- | src/vhdl/vhdl-parse.adb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-parse.adb b/src/vhdl/vhdl-parse.adb index 094889e28..1b498fbf1 100644 --- a/src/vhdl/vhdl-parse.adb +++ b/src/vhdl/vhdl-parse.adb @@ -9836,6 +9836,10 @@ package body Vhdl.Parse is Item := Parse_Psl_Assume_Directive (True); when Tok_Assert => Item := Parse_Psl_Assert_Directive (True); + when Tok_Restrict => + Item := Parse_Psl_Restrict_Directive (True); + when Tok_Cover => + Item := Parse_Psl_Cover_Directive (True); when others => exit; end case; |