Perl::Critic::Policy::ValuesAndExpressions::ProhibitArrayAssignAref - don't assign an anonymous arrayref to an array


Perl-Critic-Pulp documentation  | view source Contained in the Perl-Critic-Pulp distribution.

Index


NAME

Top

Perl::Critic::Policy::ValuesAndExpressions::ProhibitArrayAssignAref - don't assign an anonymous arrayref to an array

DESCRIPTION

Top

This policy is part of the Perl::Critic::Pulp|Perl::Critic::Pulp addon. It asks you not to assign an anonymous arrayref to an array

    @array = [ 1, 2, 3 ];       # bad

The idea is that it's a rather unclear whether an arrayref is intended, or might have meant a list like

    @array = ( 1, 2, 3 );

For the chance the [] is a mistake and since it will make anyone reading it wonder, this policy is under the "bugs" theme (see POLICY THEMES in Perl::Critic).

It's perfectly good to assign a single arrayref to an array, but put parens to make it clear,

    @array = ( [1,2,3] );       # ok

Derefs and array and hash slices (see Slices in perldata) are recognised and treated likewise,

    @$ref = [1,2,3];            # bad to deref
    @{$ref} = [1,2,3];          # bad to deref
    @x[1,2,3] = ['a','b','c'];  # bad to array slice
    @x{'a','b'} = [1,2];        # bad to hash slice

List Assignment Parens

There's no blanket requirement for () parens on an array assignment here since it's normal and unambiguous to have a function call or grep etc.

    @array = foo();
    @array = grep {/\.txt$/} @array;

The only likely problem from lack of parens is that the , comma operator has lower precedence than = (see perlop), so something like

    @array = 1,2,3;   # not a list

means

    @array = (1);
    2;
    3;

Normally the remaining literals in void context provoke a compile time warning.

An intentional single element assignment is quite common though, as a statement, for instance

    @ISA = 'My::Parent::Class';

For reference the range operator precedence is high enough,

    @array=1..10;              # fine

though of course parens are needed if concatenating some disjoint ranges with the comma operator,

    @array = (1..5, 10..15);   # parens needed

The qw form gives a list too

    @array = qw(a b c);        # fine

SEE ALSO

Top

Perl::Critic::Pulp, Perl::Critic

HOME PAGE

Top

http://user42.tuxfamily.org/perl-critic-pulp/index.html

COPYRIGHT

Top


Perl-Critic-Pulp documentation  | view source Contained in the Perl-Critic-Pulp distribution.