1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2008-2015, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- This package (pretty print) contains a routine for printing an expression
27 -- given its node in the syntax tree. Contrarily to the Sprint package, this
28 -- routine tries to obtain "pretty" output that can be used for e.g. error
31 with Types
; use Types
;
32 with Urealp
; use Urealp
;
38 -- ??? The generic parameters should be removed.
40 with function Real_Image
(U
: Ureal
) return String;
41 with function String_Image
(S
: String_Id
) return String;
42 with function Ident_Image
(Expr
: Node_Id
;
44 Expand_Type
: Boolean) return String;
45 -- Will be called for printing N_Identifier and N_Defining_Identifier
47 -- ??? Expand_Type argument should be removed
49 Hide_Parameter_Blocks
: Boolean := False;
50 -- If true, then "Parameter_Block.Field_Name.all" is
51 -- instead displayed as "Field_Name".
53 function Expression_Image
55 Default
: String) return String;
56 -- Given a Node for an expression, return a String that is meaningful for
57 -- the programmer. If the expression comes from source, it is copied from
59 -- Subexpressions outside of the maximum depth (3), the maximal number of
60 -- accepted nodes (24), and the maximal number of list elements (3), are
61 -- replaced by the default string.