Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make dd a little more lenient on bare type objects
  • Loading branch information
lizmat committed Mar 4, 2016
1 parent eac1e26 commit 259624f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Any.pm
Expand Up @@ -538,7 +538,7 @@ sub dd(|) {
if nqp::elems($args) {
while $args {
my $var := nqp::shift($args);
my $name := $var.VAR.?name;
my $name := try $var.VAR.?name;
my $type := $var.WHAT.^name;
my $what := $var.?is-lazy
?? $var[^10].perl.chop ~ "...Inf)"
Expand Down

0 comments on commit 259624f

Please sign in to comment.