# New Ticket Created by Jerry Gay
# Please include the string: [perl #48218]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48218 >
when specifying inline pir in past, i've run across a bit of
redundancy that can be factored out:
$try.push( PAST::Op.new( :inline( "new %r, 'Undef'\nstore_lex
'$!', %r" ),
:pasttype('inline')
)
could be written as:
$try.push( PAST::Op.new( :inline( "new %r, 'Undef'\nstore_lex
'$!', %r" ) )
without any loss of information, since :inline('...') should always
imply :pasttype('inline').
~jerry