--| +=========================================================================+ --| | | --| | REGION_SCAN.REGION_SCAN_INTERNAL.SCAN_DECLARATION_LIST (body) | --| | | --| | Greg Janee | --| | General Research Corporation | --| | | --| +=========================================================================+ separate (Region_Scan.Region_Scan_Internal) procedure Scan_Declaration_List (The_List : in Asis.Declaration_List; The_Context : in out Context) is Cuid : constant String := "Region_Scan.Region_Scan_Internal.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); Region_Scan_Internal.Scan_Declaration (The_Declaration, The_Context); end loop; end Scan_Declaration_List;