Next Statement Rules

next_statement_300

phase_4 error indent

This rule checks the indentation of the next keyword.

Violation

next when condition;
end function;

Fix

  next when condition;
end function;

next_statement_301

phase_4 error indent

This rule checks the indentation of the label.

Violation

next_label : next when condition;
end function;

Fix

  next_label : next when condition;
end function;

next_statement_500

phase_6 error case case_keyword

This rule checks the next keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

NEXT when condition;

Fix

next when condition;

next_statement_501

phase_6 error case case_keyword

This rule checks the when keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

next WHEN condition;

Fix

next when condition;