diff options
Diffstat (limited to 'src/vhdl/errorout.ads')
-rw-r--r-- | src/vhdl/errorout.ads | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vhdl/errorout.ads b/src/vhdl/errorout.ads index cdbb482a2..85ff86dc4 100644 --- a/src/vhdl/errorout.ads +++ b/src/vhdl/errorout.ads @@ -181,8 +181,17 @@ package Errorout is Id : Msgid_Type; Cont : Boolean; File : Source_File_Entry; + + -- The first line is line 1, 0 can be used when line number is not + -- relevant. Line : Natural; + + -- Offset in the line. The first character is at offset 0. Offset : Natural; + + -- Length of the location (for a range). It is assumed to be on the + -- same line; use 0 when unknown. + Length : Natural; end record; type Error_Start_Handler is access procedure (Err : Error_Record); |