You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CHECK 02 does not allow CHECK for exit from block except loops. It required RETURN for this.
And it used Programming Guideline Only use RETURN to exit procedures) to justify it.
BUT! That guideline has Exception section:
An exception to the rule to only use RETURN to exit procedures are CHECK statements that are located at the beginning of a procedure and that check the prerequisites for the execution of the procedure there. Using the CHECK statement in such a way does not impair the legibility and is thus allowed. However, this exception does not apply to other positions within a procedure and outside loops.
The text was updated successfully, but these errors were encountered:
CHECK 02 does not allow CHECK for exit from block except loops. It required RETURN for this.
And it used Programming Guideline Only use RETURN to exit procedures) to justify it.
BUT! That guideline has Exception section:
The text was updated successfully, but these errors were encountered: