Modify ↓
Opened 13 years ago
Closed 13 years ago
#2182 closed Feature Request (Rejected)
The real "ContinueCase"
Reported by: | asdf8 | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | Severity: | None | |
Keywords: | ContinueCase | Cc: |
Description
You can add an optional mode of the operator "ContinueCase" for real a continuation of the processing of cases?
Ie that after this operator started checking cases, starting with the next case to first performing the condition of the case (if any), and ignoring "Case Else" (if any), since was already executed at least one condition of the case in the series.
Attachments (0)
Change History (1)
comment:1 Changed 13 years ago by Valik
- Resolution set to Rejected
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
It is not clear what you are trying to convey. The behavior for ContinueCase is fine and matches other languages which normally fall through by default. We do the opposite, we break by default and allow a fall through mechanism. If you have some other usage scenario that requires additional behavior then you are almost certainly using the wrong conditional testing block.