]> git.vpit.fr Git - perl/modules/Sub-Nary.git/commitdiff
Switch qw delimiters to <>
authorVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 21:47:21 +0000 (18:47 -0300)
committerVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 22:04:27 +0000 (19:04 -0300)
lib/Sub/Nary.pm
samples/cx.pl
t/02-can.t
t/10-obj.t
t/20-return.t
t/21-list.t
t/23-branch.t
t/24-ops.t
t/92-pod-coverage.t

index ec8ca4d02c9a26389c71e8706e441850b11b6237..de42e73576a67eba931eca0956f58f4a9ccc08d5 100644 (file)
@@ -5,9 +5,9 @@ use 5.008_001;
 use strict;
 use warnings;
 
-use Carp qw/croak/;
+use Carp qw<croak>;
 
-use B qw/class ppname svref_2object OPf_KIDS/;
+use B qw<class ppname svref_2object OPf_KIDS>;
 
 =head1 NAME
 
@@ -211,12 +211,12 @@ sub power {
 my %ops;
 
 $ops{$_} = 1      for scalops;
-$ops{$_} = 0      for qw/stub nextstate pushmark iter unstack/;
-$ops{$_} = 1      for qw/padsv/;
-$ops{$_} = 'list' for qw/padav/;
-$ops{$_} = 'list' for qw/padhv rv2hv/;
-$ops{$_} = 'list' for qw/padany/;
-$ops{$_} = 'list' for qw/match entereval readline/;
+$ops{$_} = 0      for qw<stub nextstate pushmark iter unstack>;
+$ops{$_} = 1      for qw<padsv>;
+$ops{$_} = 'list' for qw<padav>;
+$ops{$_} = 'list' for qw<padhv rv2hv>;
+$ops{$_} = 'list' for qw<padany>;
+$ops{$_} = 'list' for qw<match entereval readline>;
 
 $ops{each}      = { 0 => 0.5, 2 => 0.5 };
 $ops{stat}      = { 0 => 0.5, 13 => 0.5 };
@@ -225,12 +225,12 @@ $ops{caller}    = sub { my @a = caller 0; scalar @a }->();
 $ops{localtime} = do { my @a = localtime; scalar @a };
 $ops{gmtime}    = do { my @a = gmtime; scalar @a };
 
-$ops{$_} = { 0 => 0.5, 10 => 0.5 } for map "gpw$_", qw/nam uid ent/;
-$ops{$_} = { 0 => 0.5, 4 => 0.5 }  for map "ggr$_", qw/nam gid ent/;
-$ops{$_} = 'list'                  for qw/ghbyname ghbyaddr ghostent/;
-$ops{$_} = { 0 => 0.5, 4 => 0.5 }  for qw/gnbyname gnbyaddr gnetent/;
-$ops{$_} = { 0 => 0.5, 3 => 0.5 }  for qw/gpbyname gpbynumber gprotoent/;
-$ops{$_} = { 0 => 0.5, 4 => 0.5 }  for qw/gsbyname gsbyport gservent/;
+$ops{$_} = { 0 => 0.5, 10 => 0.5 } for map "gpw$_", qw<nam uid ent>;
+$ops{$_} = { 0 => 0.5, 4 => 0.5 }  for map "ggr$_", qw<nam gid ent>;
+$ops{$_} = 'list'                  for qw<ghbyname ghbyaddr ghostent>;
+$ops{$_} = { 0 => 0.5, 4 => 0.5 }  for qw<gnbyname gnbyaddr gnetent>;
+$ops{$_} = { 0 => 0.5, 3 => 0.5 }  for qw<gpbyname gpbynumber gprotoent>;
+$ops{$_} = { 0 => 0.5, 4 => 0.5 }  for qw<gsbyname gsbyport gservent>;
 
 sub enter {
  my ($self, $cv) = @_;
@@ -386,8 +386,8 @@ sub pp_entersub {
     $next = $next->sibling;
    }
    $n  = name($op)
-  } while ($op->flags & OPf_KIDS and { map { $_ => 1 } qw/null leave/ }->{$n});
-  return 'list', undef unless { map { $_ => 1 } qw/gv refgen/ }->{$n};
+  } while ($op->flags & OPf_KIDS and { map { $_ => 1 } qw<null leave> }->{$n});
+  return 'list', undef unless { map { $_ => 1 } qw<gv refgen> }->{$n};
   local $self->{sub} = 1;
   my ($rc, $lc) = $self->inspect($op);
   return $r, scale $c, $lc;
index 14cb2375552ee82069f314fbb33c37a19a0ceb64..3289c8dedce3708072a1428b4886764ce0424f6d 100755 (executable)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use lib qw{blib/lib blib/arch};
+use lib qw<blib/lib blib/arch>;
 
 my $bd;
 BEGIN {
index 5479691dafb562648cb536add4bd6ba4f31ab149..29164dc79706a4ae16af59fd2eb4bca6f783d950 100644 (file)
@@ -7,6 +7,6 @@ use Test::More tests => 3;
 
 require Sub::Nary;
 
-for (qw/new nary flush/) {
+for (qw<new nary flush>) {
  ok(Sub::Nary->can($_), 'SN can ' . $_);
 }
index feaecc93526b850ce2fc5f9ffc14175e071ce882..d3ad020f149ac4b14b50a05f52cee58f7a6b2a20 100644 (file)
@@ -21,7 +21,7 @@ is(ref $sn3, 'Sub::Nary', 'SN::new called as a functions returns a Sub::Nary obj
 
 my $fake = { };
 bless $fake, 'Sub::Nary::Hlagh';
-for (qw/flush/) {
+for (qw<flush>) {
  eval "Sub::Nary::$_('Sub::Nary')";
  like($@, qr/^First\s+argument/, "SN::$_ isn't a class method");
  eval "Sub::Nary::$_(\$fake)";
index 32f2bc15b6fc585fa82b120c45ac02e6421de195..99d9954562118d840300e81324bf56368d31b21a 100644 (file)
@@ -42,7 +42,7 @@ my @tests = (
 
  [ sub { return %h },              'list' ],
  [ sub { return $h{a} },           1 ],
- [ sub { return @h{qw/a b/} },     2 ],
+ [ sub { return @h{qw<a b>} },     2 ],
  [ sub { return @h{@a[1 .. 3]} },  3 ],
  [ sub { return @h{@a[$y .. 3]} }, 'list' ],
  [ sub { return keys %h },         'list' ],
@@ -69,7 +69,7 @@ my @tests = (
  [ sub { for ($x, 1, $y) { return 1, 2 } },                              2 ],
  [ sub { for (@a) { return 1, do { $x } } },                             2 ],
  [ sub { for (keys %h) { return do { 1 }, do { return @a[0, 2] } } },    2 ],
- [ sub { for my $i (1 .. 4) { return @h{qw/a b/} } },                    2 ],
+ [ sub { for my $i (1 .. 4) { return @h{qw<a b>} } },                    2 ],
  [ sub { for (my $i; $i < 10; ++$i) { return 1, @a[do{return 2, 3}] } }, 2 ],
  [ sub { return 1, 2 for 1 .. 4 },                                       2 ],
 
index 4dc492a811480b81dfa01965b9d46b23d8591047..7fa217bc8c5673ec3ed40b402298c36be741f9b7 100644 (file)
@@ -33,7 +33,7 @@ my @tests = (
 
  [ sub { %h },          'list' ],
  [ sub { $h{a} },       1 ],
- [ sub { @h{qw/a b/} }, 2 ],
+ [ sub { @h{qw<a b>} }, 2 ],
  [ sub { keys %h },     'list' ],
  [ sub { values %h },   'list' ],
 
index ae0456481a2b47101b47793e18ca1b55c9909c64..fef709dc1da61c42bddf566e42d0ca974b4c924e 100644 (file)
@@ -40,7 +40,7 @@ sub ret1234 {
  } elsif ($h{foo}) {
   return 3, @a[4, 5];
  } elsif (@a) {
-  return @h{qw/a b c/}, $y
+  return @h{qw<a b c>}, $y
  }
 }
 
index 3bfe5429823e7d7a5006367215ae9e8df18a6818..f824d1c70ae8fee342b9af67cbc8c54263bcd54f 100644 (file)
@@ -13,7 +13,7 @@ my ($x, %h);
 
 my @tests = (
  [ sub { delete $h{foo} },             1 ],
- [ sub { delete @h{qw/foo bar baz/} }, 3 ],
+ [ sub { delete @h{qw<foo bar baz>} }, 3 ],
 
  [ sub { return <$x> }, 'list' ],
 
index 9035e8e4eece7b365c74bc26c6e0c1e5796d78d1..ceebe2ce2aed6dfc79b3711a736870c5fdd1e6c0 100644 (file)
@@ -12,8 +12,10 @@ load_or_skip_all('Test::Pod::Coverage', '1.08', [ ]);
 load_or_skip_all('Pod::Coverage',       '0.18'     );
 
 all_pod_coverage_ok({ also_private => [
- qr/^inspect/, qr/^pp_/, qw/enter/,
- qw/tag scalops/,
- qw/null zero count scale normalize add combine cumulate power/,
- qw/name const_sv gv_or_padgv padval/
+ qr/^inspect/,
+ qr/^pp_/,
+ qw<enter>,
+ qw<tag scalops>,
+ qw<null zero count scale normalize add combine cumulate power>,
+ qw<name const_sv gv_or_padgv padval>,
 ] });