comparison gcc/ada/sem_ch13.ads @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
4 -- -- 4 -- --
5 -- S E M _ C H 1 3 -- 5 -- S E M _ C H 1 3 --
6 -- -- 6 -- --
7 -- S p e c -- 7 -- S p e c --
8 -- -- 8 -- --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. -- 9 -- Copyright (C) 1992-2018, Free Software Foundation, Inc. --
10 -- -- 10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under -- 11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- -- 12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- -- 13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- 14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
40 procedure Analyze_Aspect_Specifications (N : Node_Id; E : Entity_Id); 40 procedure Analyze_Aspect_Specifications (N : Node_Id; E : Entity_Id);
41 -- This procedure is called to analyze aspect specifications for node N. E 41 -- This procedure is called to analyze aspect specifications for node N. E
42 -- is the corresponding entity declared by the declaration node N. Callers 42 -- is the corresponding entity declared by the declaration node N. Callers
43 -- should check that Has_Aspects (N) is True before calling this routine. 43 -- should check that Has_Aspects (N) is True before calling this routine.
44 44
45 procedure Analyze_Aspect_Specifications_On_Body_Or_Stub (N : Node_Id); 45 procedure Analyze_Aspects_On_Subprogram_Body_Or_Stub (N : Node_Id);
46 -- Analyze the aspect specifications of [generic] subprogram body or stub 46 -- Analyze the aspect specifications of [generic] subprogram body or stub
47 -- N. Callers should check that Has_Aspects (N) is True before calling the 47 -- N. Callers should check that Has_Aspects (N) is True before calling the
48 -- routine. This routine diagnoses misplaced aspects that should appear on 48 -- routine. This routine diagnoses misplaced aspects that should appear on
49 -- the initial declaration of N and offers suggestions for replacements. 49 -- the initial declaration of N and offers suggestions for replacements.
50 50