--| +=========================================================================+ --| | | --| | SCAN.SCAN_EXPRESSION_LIST (body) | --| | | --| | Greg Janee | --| | General Research Corporation | --| | | --| +=========================================================================+ separate (Scan) procedure Scan_Expression_List (The_List : in Asis.Expression_List; The_Context : in out Context) is Cuid : constant String := "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); Scan.Scan_Expression (The_Expression, The_Context); end loop; end Scan_Expression_List;