1------------------------------------------------------------------------------
2--                                                                          --
3--                         GNAT COMPILER COMPONENTS                         --
4--                                                                          --
5--                            S T Y L E G . C                               --
6--                                                                          --
7--                                 S p e c                                  --
8--                                                                          --
9--          Copyright (C) 1992-2002 Free Software Foundation, Inc.          --
10--                                                                          --
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 2,  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 COPYING.  If not, write --
19-- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20-- MA 02111-1307, USA.                                                      --
21--                                                                          --
22-- GNAT was originally developed  by the GNAT team at  New York University. --
23-- Extensive contributions were provided by Ada Core Technologies Inc.      --
24--                                                                          --
25------------------------------------------------------------------------------
26
27--  This generic package, instantiated in package Style, contains routines
28--  used by the compiler for style checking. These routines are in a separate
29--  package because they depend on the GNAT tree (Atree, Sinfo, ...).
30
31with Types;  use Types;
32
33generic
34   with procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id);
35   --  Output a message at the Sloc of the given node
36
37package Styleg.C is
38
39   procedure Body_With_No_Spec (N : Node_Id);
40   --  Called where N is a subprogram body node for a subprogram body
41   --  for which no spec was given, i.e. a body acting as its own spec.
42
43   procedure Check_Identifier
44     (Ref : Node_Or_Entity_Id;
45      Def : Node_Or_Entity_Id);
46   --  Check style of identifier occurrence. Ref is an N_Identifier node whose
47   --  spelling is to be checked against the Chars spelling in identifier node
48   --  Def (which may be either an N_Identifier, or N_Defining_Identifier node)
49
50   procedure Subprogram_Not_In_Alpha_Order (Name : Node_Id);
51   --  Called if Name is the name of a subprogram body in a package body
52   --  that is not in alphabetical order.
53
54end Styleg.C;
55