1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
10 -- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
12 -- GNAT is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNAT; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- GNAT was originally developed by the GNAT team at New York University. --
24 -- Extensive contributions were provided by Ada Core Technologies Inc. --
26 ------------------------------------------------------------------------------
28 pragma Style_Checks
(All_Checks
);
29 -- Turn off subprogram body ordering check. Subprograms are in order
30 -- by RM section rather than alphabetical
35 -----------------------
36 -- Local Subprograms --
37 -----------------------
39 function P_Use_Package_Clause
return Node_Id
;
40 function P_Use_Type_Clause
return Node_Id
;
46 -- USE_CLAUSE ::= USE_PACKAGE_CLAUSE | USE_TYPE_CLAUSE
48 -- The caller has checked that the initial token is USE
50 -- Error recovery: cannot raise Error_Resync
52 function P_Use_Clause
return Node_Id
is
56 if Token
= Tok_Type
then
57 return P_Use_Type_Clause
;
60 return P_Use_Package_Clause
;
64 -----------------------------
65 -- 8.4 Use Package Clause --
66 -----------------------------
68 -- USE_PACKAGE_CLAUSE ::= use package_NAME {, package_NAME};
70 -- The caller has scanned out the USE keyword
72 -- Error recovery: cannot raise Error_Resync
74 function P_Use_Package_Clause
return Node_Id
is
78 Use_Node
:= New_Node
(N_Use_Package_Clause
, Prev_Token_Ptr
);
79 Set_Names
(Use_Node
, New_List
);
81 if Token
= Tok_Package
then
82 Error_Msg_SC
("PACKAGE should not appear here");
87 Append
(P_Qualified_Simple_Name
, Names
(Use_Node
));
88 exit when Token
/= Tok_Comma
;
94 end P_Use_Package_Clause
;
96 --------------------------
97 -- 8.4 Use Type Clause --
98 --------------------------
100 -- USE_TYPE_CLAUSE ::= use type SUBTYPE_MARK {, SUBTYPE_MARK};
102 -- The caller has checked that the initial token is USE, scanned it out
103 -- and that the current token is TYPE.
105 -- Error recovery: cannot raise Error_Resync
107 function P_Use_Type_Clause
return Node_Id
is
111 Use_Node
:= New_Node
(N_Use_Type_Clause
, Prev_Token_Ptr
);
112 Set_Subtype_Marks
(Use_Node
, New_List
);
115 Error_Msg_SC
("(Ada 83) use type not allowed!");
121 Append
(P_Subtype_Mark
, Subtype_Marks
(Use_Node
));
123 exit when Token
/= Tok_Comma
;
129 end P_Use_Type_Clause
;
131 -------------------------------
132 -- 8.5 Renaming Declaration --
133 -------------------------------
135 -- Object renaming declarations and exception renaming declarations
136 -- are parsed by P_Identifier_Declaration (3.3.1)
138 -- Subprogram renaming declarations are parsed by P_Subprogram (6.1)
140 -- Package renaming declarations are parsed by P_Package (7.1)
142 -- Generic renaming declarations are parsed by P_Generic (12.1)
144 ----------------------------------------
145 -- 8.5.1 Object Renaming Declaration --
146 ----------------------------------------
148 -- Parsed by P_Identifier_Declarations (3.3.1)
150 ----------------------------------------
151 -- 8.5.2 Exception Renaming Declaration --
152 ----------------------------------------
154 -- Parsed by P_Identifier_Declarations (3.3.1)
156 -----------------------------------------
157 -- 8.5.3 Package Renaming Declaration --
158 -----------------------------------------
160 -- Parsed by P_Package (7.1)
162 --------------------------------------------
163 -- 8.5.4 Subprogram Renaming Declaration --
164 --------------------------------------------
166 -- Parsed by P_Subprogram (6.1)
168 -----------------------------------------
169 -- 8.5.2 Generic Renaming Declaration --
170 -----------------------------------------
172 -- Parsed by P_Generic (12.1)