ExtUtils::XSpp::Node::PercAny - contains information about %Foo tags handled by plugins


ExtUtils-XSpp documentation Contained in the ExtUtils-XSpp distribution.

Index


Code Index:

NAME

Top

ExtUtils::XSpp::Node::PercAny - contains information about %Foo tags handled by plugins

DESCRIPTION

Top

Used internally during parsing.


ExtUtils-XSpp documentation Contained in the ExtUtils-XSpp distribution.

package ExtUtils::XSpp::Node::PercAny;

use strict;
use base 'ExtUtils::XSpp::Node';

sub init {
    my( $this, %args ) = @_;

    $this->{NAME} = $args{any};
    $this->{NAMED_ARGUMENTS} = $args{any_named_arguments};
    $this->{POSITIONAL_ARGUMENTS} = $args{any_positional_arguments};
}

1;