Commit d103e5d8 by Arnaud Charlet

Minor reformatting.

From-SVN: r145884
parent 4a7dedcb
...@@ -210,19 +210,19 @@ package Types is ...@@ -210,19 +210,19 @@ package Types is
subtype Source_Ptr is Text_Ptr; subtype Source_Ptr is Text_Ptr;
-- Type used to represent a source location, which is a subscript of a -- Type used to represent a source location, which is a subscript of a
-- character in the source buffer. As noted above, different source -- character in the source buffer. As noted above, different source buffers
-- buffers have different ranges, so it is possible to tell from a -- have different ranges, so it is possible to tell from a Source_Ptr value
-- Source_Ptr value which source it refers to. Note that negative numbers -- which source it refers to. Note that negative numbers are allowed to
-- are allowed to accommodate the following special values. -- accommodate the following special values.
No_Location : constant Source_Ptr := -1; No_Location : constant Source_Ptr := -1;
-- Value used to indicate no source position set in a node. A test for -- Value used to indicate no source position set in a node. A test for a
-- a Source_Ptr value being > No_Location is the approved way to test -- Source_Ptr value being > No_Location is the approved way to test for a
-- for a standard value that does not include No_Location or any of the -- standard value that does not include No_Location or any of the following
-- following special definitions. One important use of No_Location is to -- special definitions. One important use of No_Location is to label
-- label generated nodes that we don't want the debugger to see in normal -- generated nodes that we don't want the debugger to see in normal mode
-- mode (very often we conditionalize so that we set No_Location in normal -- (very often we conditionalize so that we set No_Location in normal mode
-- mode and the corresponding source line in -gnatD mode). -- and the corresponding source line in -gnatD mode).
Standard_Location : constant Source_Ptr := -2; Standard_Location : constant Source_Ptr := -2;
-- Used for all nodes in the representation of package Standard other than -- Used for all nodes in the representation of package Standard other than
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment