diff options
Diffstat (limited to 'src/vhdl/vhdl-tokens.adb')
-rw-r--r-- | src/vhdl/vhdl-tokens.adb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-tokens.adb b/src/vhdl/vhdl-tokens.adb index eb98894f3..efb31de1a 100644 --- a/src/vhdl/vhdl-tokens.adb +++ b/src/vhdl/vhdl-tokens.adb @@ -52,13 +52,18 @@ package body Vhdl.Tokens is when Tok_Dot => return "."; + when Tok_Block_Comment_Start => + return "/*"; + when Tok_Block_Comment_End => + return "*/"; + when Tok_Eof => return "<EOF>"; when Tok_Newline => return "<newline>"; when Tok_Line_Comment => return "<line-comment>"; - when Tok_Block_Comment => + when Tok_Block_Comment_Text => return "<block-comment>"; when Tok_Character => return "<character>"; |