Null Statement Rules

null_statement_300

phase_4 error indent

This rule checks the indentation of the null keyword.

Violation

null;
end loop;

Fix

  null;
end loop;

null_statement_301

phase_4 error indent

This rule checks the indentation of the label.

Violation

null_label : null;
end loop;

Fix

  null_label : null;
end loop;

null_statement_500

phase_6 error case case_keyword

This rule checks the null keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

NULL;

Fix

null;