--| +=========================================================================+ --| | | --| | SCAN.SCAN_IF_STATEMENT_ARM_LIST (body) | --| | | --| | Greg Janee | --| | General Research Corporation | --| | | --| +=========================================================================+ separate (Scan) procedure Scan_If_Statement_Arm_List (The_List : in Asis.If_Statement_Arm_List; The_Context : in out Context) is Cuid : constant String := "Scan.Scan_If_Statement_Arm_List"; Puid : constant String := "Scan_If_Statement_Arm_List"; The_Arm : Asis.If_Statement_Arm; begin for I in The_List'Range loop The_Arm := The_List (I); Scan.Scan_If_Statement_Arm (The_Arm, The_Context); end loop; end Scan_If_Statement_Arm_List;