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 / sem_ch2.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  80 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              S E M _ C H 2                               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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 Atree; use Atree;
  26. with Opt;   use Opt;
  27. with Sinfo; use Sinfo;
  28. with Stand; use Stand;
  29.  
  30. package body Sem_Ch2 is
  31.  
  32.    -------------------------------
  33.    -- Analyze_Character_Literal --
  34.    -------------------------------
  35.  
  36.    procedure Analyze_Character_Literal (N : Node_Id) is
  37.    begin
  38.       Set_Etype (N, Any_Character);
  39.       Set_Is_Static_Expression (N);
  40.    end Analyze_Character_Literal;
  41.  
  42.    -----------------------------
  43.    -- Analyze_Integer_Literal --
  44.    -----------------------------
  45.  
  46.    procedure Analyze_Integer_Literal (N : Node_Id) is
  47.    begin
  48.       Set_Etype (N, Universal_Integer);
  49.       Set_Is_Static_Expression (N);
  50.    end Analyze_Integer_Literal;
  51.  
  52.    --------------------------
  53.    -- Analyze_Real_Literal --
  54.    --------------------------
  55.  
  56.    procedure Analyze_Real_Literal (N : Node_Id) is
  57.    begin
  58.       Set_Etype (N, Universal_Real);
  59.       Set_Is_Static_Expression (N);
  60.    end Analyze_Real_Literal;
  61.  
  62.    ----------------------------
  63.    -- Analyze_String_Literal --
  64.    ----------------------------
  65.  
  66.    procedure Analyze_String_Literal (N : Node_Id) is
  67.    begin
  68.       Set_Etype (N, Any_String);
  69.  
  70.       --  String literals are static in Ada 95. Note that if the subtype
  71.       --  turns out to be non-static, then the Is_Static_Expression flag
  72.       --  will be reset in Eval_String_Literal.
  73.  
  74.       if Ada_95 then
  75.          Set_Is_Static_Expression (N);
  76.       end if;
  77.    end Analyze_String_Literal;
  78.  
  79. end Sem_Ch2;
  80.