"${foo}bar", "${foo}[1]" etc.
Robin Houston [Thu, 5 Apr 2001 18:03:23 +0000 (19:03 +0100)]
Message-ID: <20010405180323.A16388@puffinry.freeserve.co.uk>

p4raw-id: //depot/perl@9567

ext/B/B/Deparse.pm

index fa402cb..53f2006 100644 (file)
@@ -2417,7 +2417,13 @@ sub dq {
     if ($type eq "const") {
        return uninterp(escape_str(unback($self->const_sv($op)->PV)));
     } elsif ($type eq "concat") {
-       return $self->dq($op->first) . $self->dq($op->last);
+       my $first = $self->dq($op->first);
+       my $last  = $self->dq($op->last);
+       # Disambiguate "${foo}bar", "${foo}{bar}", "${foo}[1]"
+        if ($last =~ /^[{\[\w]/) {
+           $first =~ s/([%\$@])([A-Za-z_]\w*)$/${1}{$2}/;
+       }
+       return $first . $last;
     } elsif ($type eq "uc") {
        return '\U' . $self->dq($op->first->sibling) . '\E';
     } elsif ($type eq "lc") {