Unbounded Array Definition Rules
unbounded_array_definition_100
This rule checks for whitespace after the array keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
type t_u_array_unconstrained is array (natural range <>) of unsigned;
type t_u_array_unconstrained is array (natural range <>) of unsigned;
Fix
type t_u_array_unconstrained is array(natural range <>) of unsigned;
type t_u_array_unconstrained is array(natural range <>) of unsigned;
unbounded_array_definition_101
This rule checks for a single space before the of keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
type t_u_array_unconstrained is array(natural range <>) of unsigned;
Fix
type t_u_array_unconstrained is array(natural range <>) of unsigned;
unbounded_array_definition_102
This rule checks for a single space after the of keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
type t_u_array_unconstrained is array(natural range <>) of unsigned;
Fix
type t_u_array_unconstrained is array(natural range <>) of unsigned;
unbounded_array_definition_500
This rule checks the array keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
type t_u_array_unconstrained is ARRAY(natural range <>) of unsigned;
Fix
type t_u_array_unconstrained is array(natural range <>) of unsigned;
unbounded_array_definition_501
This rule checks the of keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
type t_u_array_unconstrained is array(natural range <>) OF unsigned;
Fix
type t_u_array_unconstrained is array(natural range <>) of unsigned;