Help for this page

Select Code to Download


  1. or download this
    my @attr = map {
        my $type = $_;
    ...
        map $self->${ \"stringify_$type" }( $op, $_ ),
            @{ "${type}_attributes" };
    } qw( string number unhandled treeorder execorder );
    
  2. or download this
    use PadWalker qw( peek_my );
    
    ...
        map $self->${ \"stringify_$type" }( $op, $_ ),
            @{ peek_my( 0 )->{ "\@${type}_attributes" } || [] };
    } qw( string number unhandled treeorder execorder );