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