--| +=========================================================================+ --| | | --| | REFERENCE_SCAN.SCAN_DECLARATION_LIST (body) | --| | | --| | Greg Janee | --| | General Research Corporation | --| | | --| +=========================================================================+ separate (Reference_Scan) procedure Scan_Declaration_List (The_List : in Asis.Declaration_List; The_Context : in Context) is Cuid : constant String := "Reference_Scan.Scan_Declaration_List"; Puid : constant String := "Scan_Declaration_List"; The_Declaration : Asis.Declaration; begin for I in The_List'Range loop The_Declaration := The_List (I); Reference_Scan.Scan_Declaration (The_Declaration, The_Context); end loop; end Scan_Declaration_List;