--| +=========================================================================+ --| | | --| | NAMESPACE_SCAN.SCAN_EXPRESSION_LIST (body) | --| | | --| | Greg Janee | --| | General Research Corporation | --| | | --| +=========================================================================+ separate (Namespace_Scan) procedure Scan_Expression_List (The_List : in Asis.Expression_List; The_Context : in Context) is Cuid : constant String := "Namespace_Scan.Scan_Expression_List"; Puid : constant String := "Scan_Expression_List"; The_Expression : Asis.Expression; begin for I in The_List'Range loop The_Expression := The_List (I); Namespace_Scan.Scan_Expression (The_Expression, The_Context); end loop; end Scan_Expression_List;