id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
1134,refactoring: reference/dereference,zenogantner,,"Example:

{{{
%hash = ( key1 => 'val1');
say $hash{key1};
function(\%hash);
}}}
to/from
{{{
$hash_ref = { key1 => 'val1'};
say $hash_ref->{$key1};
function($hash_ref);
}}}


The same for scalars and arrays.

Of course, there may be corner cases where this fails, but it would be neat to have such a tool...",enhancement,new,minor,,Refactoring Perl 5,0.80,,,
