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_ch7.ads < prev    next >
Text File  |  1996-09-28  |  5KB  |  82 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              S E M _ C H 7                               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.17 $                             --
  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 Types; use Types;
  26. package Sem_Ch7  is
  27.  
  28.    procedure Analyze_Package_Body                       (N : Node_Id);
  29.    procedure Analyze_Package_Declaration                (N : Node_Id);
  30.    procedure Analyze_Package_Specification              (N : Node_Id);
  31.    procedure Analyze_Private_Type_Declaration           (N : Node_Id);
  32.  
  33.    procedure End_Package_Scope (P : Entity_Id);
  34.    --  At the end of a package declaration or body, declarations in the
  35.    --  visible part are no longer immediately visible, and declarations in
  36.    --  the private part are not visible at all. For inner packages, place
  37.    --  visible entities at the end of their homonym chains. For compilation
  38.    --  units, make all entities invisible. In both cases, exchange private
  39.    --  and visible declarations to restore order of elaboration.
  40.  
  41.    procedure Exchange_Declarations (Id : Entity_Id);
  42.    --  Exchange private and full declaration on entry/exit from a package
  43.    --  declaration or body. The semantic links of the respective nodes
  44.    --  are preserved in the exchange.
  45.  
  46.    procedure Install_Visible_Declarations (P : Entity_Id);
  47.    procedure Install_Private_Declarations (P : Entity_Id);
  48.  
  49.    --  On entrance to a package body, make declarations in package spec
  50.    --  immediately visible.
  51.  
  52.    --  When compiling the body of a package,  both routines are called in
  53.    --  succession. When compiling the body of a child package, the call
  54.    --  to Install_Private_Declaration is immediate for private children,
  55.    --  but is deffered until the compilation of the  private part of the
  56.    --  child for public child packages.
  57.  
  58.    procedure Install_Package_Entity (Id : Entity_Id);
  59.    --  Basic procedure for the previous two. Places one entity on its
  60.    --  visibility chain, and recurses on the visible part if the entity
  61.    --  is an inner package.
  62.  
  63.    function Unit_Requires_Body (P : Entity_Id) return Boolean;
  64.    --  Check if a unit requires a body. A specification requires a body
  65.    --  if it contains declarations that require completion in a body.
  66.  
  67.    procedure May_Need_Implicit_Body (E : Entity_Id);
  68.    --  If a package declaration contains tasks and does not require a
  69.    --  body, create an implicit body at the end of the current declarative
  70.    --  part to activate those tasks.
  71.  
  72.    function Is_Fully_Visible (Type_Id : Entity_Id) return Boolean;
  73.    --  Indicates whether the Full Declaration of a private type is visible.
  74.  
  75.    procedure New_Private_Type (N : Node_Id; Id : Entity_Id; Def : Node_Id);
  76.    --  Common processing for private type declarations and for formal
  77.    --  private type declarations. For private types, N and Def are the type
  78.    --  declaration node; for formal private types, Def is the formal type
  79.    --  definition.
  80.  
  81. end Sem_Ch7;
  82.