diff options
Diffstat (limited to 'src/vhdl/vhdl-tokens.adb')
-rw-r--r-- | src/vhdl/vhdl-tokens.adb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-tokens.adb b/src/vhdl/vhdl-tokens.adb index 61c196721..fe20a07bd 100644 --- a/src/vhdl/vhdl-tokens.adb +++ b/src/vhdl/vhdl-tokens.adb @@ -56,8 +56,10 @@ package body Vhdl.Tokens is return "<EOF>"; when Tok_Newline => return "<newline>"; - when Tok_Comment => - return "<comment>"; + when Tok_Line_Comment => + return "<line-comment>"; + when Tok_Block_Comment => + return "<block-comment>"; when Tok_Character => return "<character>"; when Tok_Identifier => |