home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / casing.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  79 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                               C A S I N G                                --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.9 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. package Casing is
  27.  
  28.    --  This package contains data and subprograms to support the feature that
  29.    --  recognizes the letter case styles used in the source program being
  30.    --  compiled, and uses this information for error message formatting, and
  31.    --  for recognizing reserved words that are misused as identifiers.
  32.  
  33.    -------------------------------
  34.    -- Case Control Declarations --
  35.    -------------------------------
  36.  
  37.    --  Declaration of type for describing casing convention
  38.  
  39.    type Casing_Type is (
  40.  
  41.       All_Upper_Case,
  42.       --  All letters are upper case
  43.  
  44.       All_Lower_Case,
  45.       --  All letters are lower case
  46.  
  47.       Mixed_Case,
  48.       --  The initial letter, and any letters after underlines are upper case.
  49.       --  All other letters are lower case
  50.  
  51.       Unknown
  52.       --  Used if an identifier does not distinguish between the above cases,
  53.       --  (e.g. X, Y_3, M4, A_B, or if it is inconsistent ABC_def).
  54.    );
  55.  
  56.    ------------------------------
  57.    -- Case Control Subprograms --
  58.    ------------------------------
  59.  
  60.    procedure Set_Casing (C : Casing_Type; D : Casing_Type := Mixed_Case);
  61.    --  Takes the name stored in the first Name_Len positions of Name_Buffer
  62.    --  and modifies it to be consistent with the casing given by C, or if
  63.    --  C = Unknown, then with the casing given by D. The name is basically
  64.    --  treated as an identifier, except that special separator characters
  65.    --  other than underline are permitted and treated like underlines (this
  66.    --  handles cases like minus and period in unit names, apostrophes in error
  67.    --  messages, angle brackets in names like <any_type>, etc).
  68.  
  69.    procedure Set_All_Upper_Case;
  70.    pragma Inline (Set_All_Upper_Case);
  71.    --  This procedure is called with an identifier name stored in Name_Buffer.
  72.    --  On return, the identifier is converted to all upper case. The call is
  73.    --  equivalent to Set_Casing (All_Upper_Case). It is provided separately
  74.    --  as a convenience for Gigi, which does not have Casing_Type available.
  75.  
  76.    --  See also Scn.Determine_Token_Casing
  77.  
  78. end Casing;
  79.