]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/commitdiff
Switch to qw<>
authorVincent Pit <vince@profvince.com>
Mon, 20 Dec 2010 23:23:38 +0000 (00:23 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 20 Dec 2010 23:23:38 +0000 (00:23 +0100)
22 files changed:
lib/LaTeX/TikZ/Formatter.pm
lib/LaTeX/TikZ/Functor/Rule.pm
lib/LaTeX/TikZ/Meta/TypeConstraint/Autocoerce.pm
lib/LaTeX/TikZ/Mod.pm
lib/LaTeX/TikZ/Mod/Formatted.pm
lib/LaTeX/TikZ/Mod/Pattern/Dots.pm
lib/LaTeX/TikZ/Mod/Pattern/Lines.pm
lib/LaTeX/TikZ/Point.pm
lib/LaTeX/TikZ/Point/Math/Complex.pm
lib/LaTeX/TikZ/Set.pm
lib/LaTeX/TikZ/Set/Line.pm
lib/LaTeX/TikZ/Set/Mutable.pm
lib/LaTeX/TikZ/Set/Op.pm
lib/LaTeX/TikZ/Set/Path.pm
lib/LaTeX/TikZ/Set/Point.pm
lib/LaTeX/TikZ/Set/Rectangle.pm
lib/LaTeX/TikZ/Set/Sequence.pm
t/01-api.t
t/02-autocoerce.t
t/12-geo.t
t/20-mod.t
t/21-layer.t

index 1acf9b8a731b97575916d28ae4744b447cad9127..77f3b53b1b609763635fe266e03aeaea596fc281 100644 (file)
@@ -45,7 +45,7 @@ Defaults to C<cm>.
 
 has 'unit' => (
  is      => 'ro',
- isa     => enum([ qw/cm pt/ ]),
+ isa     => enum([ qw<cm pt> ]),
  default => 'cm',
 );
 
@@ -131,7 +131,7 @@ sub id {
 
  my $origin = $tikz->origin;
  if (defined $origin) {
-  my ($x, $y) = map $origin->$_, qw/x y/;
+  my ($x, $y) = map $origin->$_, qw<x y>;
   $origin = "($x;$y)";
  } else {
   $origin = "(0;0)";
@@ -139,7 +139,7 @@ sub id {
 
  join $;, map {
   defined() ? "$_" : '(undef)';
- } map($tikz->$_, qw/unit format scale width height/), $origin;
+ } map($tikz->$_, qw<unit format scale width height>), $origin;
 }
 
 =head2 C<render @sets>
index d4e070011a3b5e7413d81c6b3e67bd3d0ff792dd..4dbe9790508564df7bfaea60761096feef36b8c6 100644 (file)
@@ -25,7 +25,7 @@ A functor is basically an ordered collection of rules.
 use Carp ();
 
 use Any::Moose;
-use Any::Moose 'Util' => [ qw[find_meta does_role] ];
+use Any::Moose 'Util' => [ qw<find_meta does_role> ];
 use Any::Moose 'Util::TypeConstraints';
 
 =head1 ATTRIBUTES
index c31508b41f6d80dc82aab3e88ecaa80f1eabc33a..72bb96fa5a34e269f9664cfd13495cfa30a36e55 100644 (file)
@@ -85,7 +85,7 @@ Note that you will need L<Moose::Util::TypeConstraints/register_type_constraint>
 
 =cut
 
-use Scalar::Util qw/blessed/;
+use Scalar::Util qw<blessed>;
 
 use Sub::Name ();
 
index 8095e44192727dc0568c4f320f4075af2cbca4a4..46c61f734824e09d1852fec1ae630d026cfc5cd9 100644 (file)
@@ -60,12 +60,12 @@ Returns the TikZ code that activates the current mod as a string formatted by th
 
 =cut
 
-requires qw(
+requires qw<
  tag
  covers
  declare
  apply
-);
+>;
 
 coerce 'LaTeX::TikZ::Mod'
     => from 'Str'
index 7e7b1098f7e1a2475f47b6c78037c638f96d2f0b..2dd820b590620e7c0860d6b27bfe38af12a3ca00 100644 (file)
@@ -18,7 +18,7 @@ our $VERSION = '0.02';
 use Any::Moose;
 use Any::Moose 'Util::TypeConstraints' => [
  'enum',
- qw(coerce from via),
+ qw<coerce from via>,
 ];
 
 =head1 ATTRIBUTES
@@ -29,7 +29,7 @@ use Any::Moose 'Util::TypeConstraints' => [
 
 has 'type' => (
  is       => 'ro',
- isa      => enum([ qw/clip layer raw/ ]),
+ isa      => enum([ qw<clip layer raw> ]),
  required => 1,
 );
 
index ccb171d16a47bc039d43cec750ad9719ddb849a0..7e15b5fb03cc1c02c75a2700488cd75c6cd4db59 100644 (file)
@@ -84,7 +84,7 @@ around 'BUILDARGS' => sub {
  confess('Can\'t specify an explicit template for a '. __PACKAGE__ .' pattern')
                                                       if exists $args{template};
 
- my @params = qw/dot_width space_width/;
+ my @params = qw<dot_width space_width>;
 
  my $meta = $class->meta;
  for (@params) {
index c9978e0bc580867db431068cf0dfe38d8d0d7c56..193b68e661c1ac990c29f6d01e89e9ce78cabbee 100644 (file)
@@ -125,7 +125,7 @@ around 'BUILDARGS' => sub {
  confess('Can\'t specify an explicit template for a '. __PACKAGE__ .' pattern')
                                                       if exists $args{template};
 
- my @params = qw/direction line_width space_width/;
+ my @params = qw<direction line_width space_width>;
 
  my $meta = $class->meta;
  for (@params) {
index e409947a00245e16f7b32d6c9f1e4a4a52e5219c..d5c5da0b743386fa67d2ca1c87fe9304b4c61ac2 100644 (file)
@@ -16,13 +16,13 @@ Version 0.02
 our $VERSION = '0.02';
 
 use Any::Moose;
-use Any::Moose 'Util::TypeConstraints' => [ qw/
+use Any::Moose 'Util::TypeConstraints' => [ qw<
  coerce
  from
  via
  find_type_constraint
  register_type_constraint
-/ ];
+> ];
 
 =head1 ATTRIBUTES
 
index c5c94b74381245d258dd92c065c3ca108d4156f6..56ba905aeb8707b91c994a147deea26cb7948d4d 100644 (file)
@@ -19,12 +19,12 @@ use Math::Complex;
 
 use LaTeX::TikZ::Point;
 
-use Any::Moose 'Util::TypeConstraints' => [ qw/
+use Any::Moose 'Util::TypeConstraints' => [ qw<
  class_type
  coerce
  from
  via
-/ ];
+> ];
 
 my $mc_tc = class_type 'Math::Complex';
 
index cf2386d85f6c62abdfb67943f2a756ca7a728c3c..4e6eafcab46dc282645010805e07fb4f03734b57 100644 (file)
@@ -57,9 +57,9 @@ Returns an array reference of TikZ code lines required to effectively draw the c
 
 =cut
 
-requires qw(
+requires qw<
  draw
-);
+>;
 
 =head2 C<mod @mods>
 
index 807b56dc869011ee1628549e755b992a1a6b1b46..3ee969493a0f764a292c4cdca1ea424dd3c219f0 100644 (file)
@@ -81,7 +81,7 @@ LaTeX::TikZ::Interface->register(
 LaTeX::TikZ::Functor->default_rule(
  (__PACKAGE__) => sub {
   my ($functor, $set, @args) = @_;
-  $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/)
+  $set->new(map { $_ => $set->$_->$functor(@args) } qw<from to>)
  }
 );
 
index 8481fb8161a39202690521d0a9ef7fb298288654..e7518cd55f71e8d56ce85558723634ad61ca2be0 100644 (file)
@@ -36,9 +36,9 @@ C<add>
 
 =cut
 
-requires qw(
+requires qw<
  add
-);
+>;
 
 =head1 SEE ALSO
 
index 6d93d028ec4c8aedbee1edca0c69bd6a4da83b88..69d8a63f08a4f69fdd0023ad4c821bc96ff2b647 100644 (file)
@@ -49,9 +49,9 @@ Returns the TikZ code that builds a path out of the current set object as a stri
 
 =cut
 
-requires qw(
+requires qw<
  path
-);
+>;
 
 =head2 C<draw>
 
index 8cd762c34ef55df37281ddcacb3d8a75e5bc1d0a..a19d8c0ff436c879911fa2f70a236d63f92be8f0 100644 (file)
@@ -28,10 +28,10 @@ This class consumes the L<LaTeX::TikZ::Set::Op> and L<LaTeX::TikZ::Set::Mutable>
 
 =cut
 
-with qw(
+with qw<
  LaTeX::TikZ::Set::Op
  LaTeX::TikZ::Set::Mutable
-);
+>;
 
 =head1 ATTRIBUTES
 
index ff861b0c0aac61dee84bbc9de8e68810c6821445..2309db3910c228eea5059d96d54126c2c76c9824 100644 (file)
@@ -44,7 +44,7 @@ has 'point' => (
  isa      => 'LaTeX::TikZ::Point::Autocoerce',
  required => 1,
  coerce   => 1,
- handles  => [ qw/x y/ ],
+ handles  => [ qw<x y> ],
 );
 
 =head2 C<label>
index 8840254c7e9707b18568bc735eb0ad9b20718279..c6729397418184822e013397211031cb42bf3895 100644 (file)
@@ -116,7 +116,7 @@ Attributes 'width' and 'height' are required when 'to' was not given
    MSG
    $args{from} = $tc1->coerce($args{from});
    $meta->find_attribute_by_name($_)->type_constraint->assert_valid($args{$_})
-                                                      for qw/from width height/;
+                                                      for qw<from width height>;
    my $p = $args{from}->point;
    $args{to} = LaTeX::TikZ::Point->new(
     x => $p->x + $args{width},
@@ -138,7 +138,7 @@ LaTeX::TikZ::Interface->register(
 
   __PACKAGE__->new(
    from => $p,
-   ($is_relative ? (map +($_ => $q->{$_}), qw/width height/) : (to => $q)),
+   ($is_relative ? (map +($_ => $q->{$_}), qw<width height>) : (to => $q)),
   );
  },
 );
@@ -146,7 +146,7 @@ LaTeX::TikZ::Interface->register(
 LaTeX::TikZ::Functor->default_rule(
  (__PACKAGE__) => sub {
   my ($functor, $set, @args) = @_;
-  $set->new(map { $_ => $set->$_->$functor(@args) } qw/from to/)
+  $set->new(map { $_ => $set->$_->$functor(@args) } qw<from to>)
  }
 );
 
index afdc313813eaf7fea53e563d86db6b898a02f75c..446721e015b35ce2198a0f10ac7b15be88f05b7d 100644 (file)
@@ -24,7 +24,7 @@ use LaTeX::TikZ::Functor;
 
 use Any::Moose;
 use Any::Moose 'Util::TypeConstraints'
-               => [ qw/subtype as where find_type_constraint/ ];
+               => [ qw<subtype as where find_type_constraint> ];
 
 =head1 RELATIONSHIPS
 
@@ -32,10 +32,10 @@ This class consumes the L<LaTeX::TikZ::Set> and L<LaTeX::TikZ::Set::Mutable> rol
 
 =cut
 
-with qw(
+with qw<
  LaTeX::TikZ::Set
  LaTeX::TikZ::Set::Mutable
-);
+>;
 
 subtype 'LaTeX::TikZ::Set::Sequence::Elements'
      => as 'Object'
index 9f00401b3c6283a0727d879a317ac8a92b0d7341..dd098d96fa2d490a128d78cf64645016517a2a69 100644 (file)
@@ -28,7 +28,7 @@ is(prototype('Tikz'), '', 'main::Tikz is actually a constant');
  ::is(prototype('T'), '', 'LaTeX::TikZ::TestAPI2::T is actually a constant');
 }
 
-my @methods = qw/
+my @methods = qw<
  formatter functor
  raw
  path seq
@@ -36,7 +36,7 @@ my @methods = qw/
  raw_mod
  clip layer
  width color fill pattern
-/;
+>;
 
 for (@methods) {
  ok(Tikz->can($_), "Tikz evaluates to something that ->can($_)");
index 463614b23ce80b79e95642da2727b0db25dc684d..ba0549809d6618e83385171e702ec5d67b2420ed 100644 (file)
@@ -41,13 +41,13 @@ use LaTeX::TikZ::Meta::TypeConstraint::Autocoerce;
  package LaTeX::TikZ::TestX;
 
  use Any::Moose;
- use Any::Moose 'Util::TypeConstraints' => [ qw/
+ use Any::Moose 'Util::TypeConstraints' => [ qw<
   coerce
   from
   via
   find_type_constraint
   register_type_constraint
/ ];
> ];
 
  has 'id' => (
   is       => 'ro',
index c1caa3e31b169dcbbe941579823f79392a2a3adb..87832f7c75d0d288e00489b74698791880af5046 100644 (file)
@@ -106,7 +106,7 @@ RES
  like $@, qr/at least two LaTeX::TikZ::Set::Point objects are needed in order to build a polyline/, "creating a $desc from only one Tikz point croaks";
 
  $pl = eval {
-  Tikz->$polyline(qw/foo bar/);
+  Tikz->$polyline(qw<foo bar>);
  };
  like $@, failed_valid('LaTeX::TikZ::Point::Autocoerce'), "creating a $desc from two string croaks";
 }
index ae9cc77c6709ed5b09e540597ec8c2865d6458ef..c2c54f8997463203344ab6005400ffbc3253e05e 100644 (file)
@@ -252,7 +252,7 @@ check $seq, 'mod covering 3', <<'RES';
 RES
 
 eval {
- $baz->mod(Tikz->raw_mod($_)) for qw/raw2 raw3/;
+ $baz->mod(Tikz->raw_mod($_)) for qw<raw2 raw3>;
 };
 is $@, '', 'creating and adding another raw mod doesn\'t croak';
 
@@ -288,7 +288,7 @@ check $seq, 'mod covering 5', <<'RES';
 RES
 
 my ($fred, $fblue) = eval {
- map Tikz->fill($_), qw/red blue/;
+ map Tikz->fill($_), qw<red blue>;
 };
 is $@, '', 'creating two fill mods doesn\'t croak';
 
index a4990b50e41a81e8631e955a82bd2a78815a8ee7..97e7bc83c9c889a0bb5c2d3799634f1cdc77d436 100644 (file)
@@ -72,7 +72,7 @@ is $@, '', 'creating another layered raw set doesn\'t croak';
 my $seq = Tikz->seq($foo, $bar);
 
 check_layers $seq, 'a sequence of two layered raw sets',
-             <<'RES', [ qw/middle top/ ];
+             <<'RES', [ qw<middle top> ];
 \begin{pgfonlayer}{middle}
 \draw foo ;
 \end{pgfonlayer}
@@ -102,7 +102,7 @@ my $res = eval {
 is $@,     '',     'calling an empty ->layer onto a sequence doesn\'t croak';
 is "$res", "$seq", 'empty ->layer returns the object itself';
 
-check_layers $seq, 'a layered sequence', <<'RES', [ qw/bottom middle top/ ];
+check_layers $seq, 'a layered sequence', <<'RES', [ qw<bottom middle top> ];
 \begin{pgfonlayer}{bottom}
 \begin{pgfonlayer}{middle}
 \draw foo ;
@@ -120,7 +120,7 @@ my $red = Tikz->color('red');
 $seq->mod($red);
 
 check_layers $seq, 'mods folding with layers 1',
-             <<'RES', [ qw/bottom middle top/ ];
+             <<'RES', [ qw<bottom middle top> ];
 \begin{pgfonlayer}{bottom}
 \begin{scope} [color=red]
 \begin{pgfonlayer}{middle}
@@ -137,7 +137,7 @@ RES
 $baz->mod($top);
 
 check_layers $seq, 'mods folding with layers 2',
-             <<'RES', [ qw/bottom middle top/ ];
+             <<'RES', [ qw<bottom middle top> ];
 \begin{pgfonlayer}{bottom}
 \begin{scope} [color=red]
 \begin{pgfonlayer}{middle}
@@ -156,7 +156,7 @@ RES
 my $seq2 = Tikz->seq($bar, $baz, $foo)
                ->mod($red);
 
-check_layers $seq2, 'mods folding with layers 3', <<'RES', [ qw/middle top/ ];
+check_layers $seq2, 'mods folding with layers 3', <<'RES', [ qw<middle top> ];
 \begin{scope} [color=red]
 \begin{pgfonlayer}{top}
 \begin{scope} [color=red]
@@ -186,7 +186,7 @@ RES
 my $seq3 = Tikz->seq($seq2, $bar)
                ->mod($red);
 
-check_layers $seq3, 'mods folding with layers 5', <<'RES', [ qw/middle top/ ];
+check_layers $seq3, 'mods folding with layers 5', <<'RES', [ qw<middle top> ];
 \begin{scope} [color=red]
 \draw qux ;
 \begin{pgfonlayer}{middle}
@@ -201,7 +201,7 @@ RES
 $seq3 = Tikz->seq($bar, $seq2)
             ->mod($red);
 
-check_layers $seq3, 'mods folding with layers 6', <<'RES', [ qw/middle top/ ];
+check_layers $seq3, 'mods folding with layers 6', <<'RES', [ qw<middle top> ];
 \begin{scope} [color=red]
 \begin{pgfonlayer}{top}
 \draw [color=red] bar ;