Skip to content

Commit

Permalink
Support 5.6, since it's trivial.
Browse files Browse the repository at this point in the history
Whoever it is keeps inventing these new reftypes really needs their head
examined. It's *not* helpful.
  • Loading branch information
mauzo committed Oct 24, 2011
1 parent 78f5eef commit 715439e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion t/join.t
Expand Up @@ -97,7 +97,7 @@ for (

for (
[SCALAR => \1 ],
[REF => \\1 ],
[REF => \\1, ($] >= 5.008 ? "REF$hex" : "SCALAR$hex")],
($] >= 5.010 ? (
[VSTRING => \v1 ],
[REGEXP => ${qr/x/},
Expand All @@ -110,7 +110,9 @@ for (
[GLOB => \*STDOUT, ],
[IO => *STDOUT{IO},
($] > 5.011 ? "IO::File=IO$hex" : "IO::Handle=IO$hex") ],
($] >= 5.008 ? (
[FORMAT => *Format{FORMAT} ],
) : () ),
["plain object" => PlainObject->new, "PlainObject=ARRAY$hex" ],
) {
my ($rtype, $ref, $pat) = @$_;
Expand Down

0 comments on commit 715439e

Please sign in to comment.