Modify ↓
Opened 14 years ago
Closed 14 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)
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.