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 / scn.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  61 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                                  S C N                                   --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.14 $                             --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with Casing; use Casing;
  26. with Types;  use Types;
  27.  
  28. package Scn is
  29.  
  30. --  This package contains the lexical analyzer routines
  31.  
  32.    function Determine_Token_Casing return Casing_Type;
  33.    --  Determines the casing style of the current token, which is either a
  34.    --  keyword or an identifier. ). This subprogram can be called only
  35.    --  during parsing. See also package Casing.
  36.  
  37.    procedure Initialize_Scanner (Unit : Unit_Number_Type);
  38.    --  Initialize lexical scanner for scanning a new file. The caller has
  39.    --  completed the construction of the Units.Table entry for the specified
  40.    --  Unit (and the Source_File field is known to reference an existing file).
  41.  
  42.    procedure Scan;
  43.    --  Scan scans out the next token, and advances the scan state accordingly
  44.    --  (see package Scan_State for details). If the scan encounters an illegal
  45.    --  token, then an error message is issued pointing to the bad character,
  46.    --  and Scan returns a reasonable substitute token of some kind.
  47.  
  48.    function Scan_First_Char return Source_Ptr;
  49.    --  This routine returns the position in Source of the first non-blank
  50.    --  character on the current line, used for certain error recovery actions.
  51.  
  52.    procedure Scan_Reserved_Identifier (Force_Msg : Boolean);
  53.    --  This procedure is called to convert the current token, which the caller
  54.    --  has checked is for a reserved word, to an equivalent identifier. This is
  55.    --  of course only used in error situations where the parser can detect that
  56.    --  a reserved word is being used as an identifier. An appropriate error
  57.    --  message, pointing to the token, is also issued if either this is the
  58.    --  first occurrence of misuse of this identifier, or if Force_Msg is True.
  59.  
  60. end Scn;
  61.