diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-11-23 21:31:24 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-11-24 13:28:26 -0800 |
commit | ff25e5dbbad6ccf83f2e2a874a3c90294ea8cb47 (patch) | |
tree | a5a9acbe1d6843c16802f25336577be642ca5db2 /perly.y | |
parent | cca0492ec62cab786a01ea96c47e549fe0aa8c61 (diff) | |
download | perl-ff25e5dbbad6ccf83f2e2a874a3c90294ea8cb47.tar.gz |
->$#*
Diffstat (limited to 'perly.y')
-rw-r--r-- | perly.y | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1491,6 +1491,10 @@ arylen : DOLSHARP indirob { $$ = newAVREF($2); TOKEN_GETMAD($1,$$,'l'); } + | term ARROW DOLSHARP '*' + { $$ = newAVREF($1); + TOKEN_GETMAD($3,$$,'l'); + } ; star : '*' indirob |