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 / par-ch8.adb < prev    next >
Text File  |  1996-09-28  |  6KB  |  169 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              P A R . C H 8                               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.13 $                             --
  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. separate (Par)
  26. package body Ch8 is
  27.  
  28.    -----------------------
  29.    -- Local Subprograms --
  30.    -----------------------
  31.  
  32.    function P_Use_Package_Clause                           return Node_Id;
  33.    function P_Use_Type_Clause                              return Node_Id;
  34.  
  35.    ---------------------
  36.    -- 8.4  Use Clause --
  37.    ---------------------
  38.  
  39.    --  USE_CLAUSE ::= USE_PACKAGE_CLAUSE | USE_TYPE_CLAUSE
  40.  
  41.    --  The caller has checked that the initial token is USE
  42.  
  43.    --  Error recovery: cannot raise Error_Resync
  44.  
  45.    function P_Use_Clause return Node_Id is
  46.    begin
  47.       Scan; -- past USE
  48.  
  49.       if Token = Tok_Type then
  50.          return P_Use_Type_Clause;
  51.  
  52.       else
  53.          return P_Use_Package_Clause;
  54.       end if;
  55.    end P_Use_Clause;
  56.  
  57.    -----------------------------
  58.    -- 8.4  Use Package Clause --
  59.    -----------------------------
  60.  
  61.    --  USE_PACKAGE_CLAUSE ::= use package_NAME {, package_NAME};
  62.  
  63.    --  The caller has scanned out the USE keyword
  64.  
  65.    --  Error recovery: cannot raise Error_Resync
  66.  
  67.    function P_Use_Package_Clause return Node_Id is
  68.       Use_Node : Node_Id;
  69.  
  70.    begin
  71.       Use_Node := New_Node (N_Use_Package_Clause, Prev_Token_Ptr);
  72.       Set_Names (Use_Node, New_List);
  73.  
  74.       if Token = Tok_Package then
  75.          Error_Msg_SC ("PACKAGE should not appear here");
  76.          Scan; -- past PACKAGE
  77.       end if;
  78.  
  79.       loop
  80.          Append (P_Qualified_Simple_Name, Names (Use_Node));
  81.          exit when Token /= Tok_Comma;
  82.          Scan; -- past comma
  83.       end loop;
  84.  
  85.       TF_Semicolon;
  86.       return Use_Node;
  87.    end P_Use_Package_Clause;
  88.  
  89.    --------------------------
  90.    -- 8.4  Use Type Clause --
  91.    --------------------------
  92.  
  93.    --  USE_TYPE_CLAUSE ::= use type SUBTYPE_MARK {, SUBTYPE_MARK};
  94.  
  95.    --  The caller has checked that the initial token is USE, scanned it out
  96.    --  and that the current token is TYPE.
  97.  
  98.    --  Error recovery: cannot raise Error_Resync
  99.  
  100.    function P_Use_Type_Clause return Node_Id is
  101.       Use_Node : Node_Id;
  102.  
  103.    begin
  104.       Note_Feature (Use_Type, Prev_Token_Ptr);
  105.       Use_Node := New_Node (N_Use_Type_Clause, Prev_Token_Ptr);
  106.       Set_Subtype_Marks (Use_Node, New_List);
  107.  
  108.       if Ada_83 then
  109.          Error_Msg_SC ("(Ada 83) use type not allowed!");
  110.       end if;
  111.  
  112.       Scan; -- past TYPE
  113.  
  114.       loop
  115.          Append (P_Subtype_Mark, Subtype_Marks (Use_Node));
  116.          No_Constraint;
  117.          exit when Token /= Tok_Comma;
  118.          Scan; -- past comma
  119.       end loop;
  120.  
  121.       TF_Semicolon;
  122.       return Use_Node;
  123.    end P_Use_Type_Clause;
  124.  
  125.    -------------------------------
  126.    -- 8.5  Renaming Declaration --
  127.    -------------------------------
  128.  
  129.    --  Object renaming declarations and exception renaming declarations
  130.    --  are parsed by P_Identifier_Declaration (3.3.1)
  131.  
  132.    --  Subprogram renaming declarations are parsed by P_Subprogram (6.1)
  133.  
  134.    --  Package renaming declarations are parsed by P_Package (7.1)
  135.  
  136.    --  Generic renaming declarations are parsed by P_Generic (12.1)
  137.  
  138.    ----------------------------------------
  139.    -- 8.5.1  Object Renaming Declaration --
  140.    ----------------------------------------
  141.  
  142.    --  Parsed by P_Identifier_Declarations (3.3.1)
  143.  
  144.    ----------------------------------------
  145.    -- 8.5.2  Exception Renaming Declaration --
  146.    ----------------------------------------
  147.  
  148.    --  Parsed by P_Identifier_Declarations (3.3.1)
  149.  
  150.    -----------------------------------------
  151.    -- 8.5.3  Package Renaming Declaration --
  152.    -----------------------------------------
  153.  
  154.    --  Parsed by P_Package (7.1)
  155.  
  156.    --------------------------------------------
  157.    -- 8.5.4  Subprogram Renaming Declaration --
  158.    --------------------------------------------
  159.  
  160.    --  Parsed by P_Subprogram (6.1)
  161.  
  162.    -----------------------------------------
  163.    -- 8.5.2  Generic Renaming Declaration --
  164.    -----------------------------------------
  165.  
  166.    --  Parsed by P_Generic (12.1)
  167.  
  168. end Ch8;
  169.