| ExtUtils-XSpp documentation | Contained in the ExtUtils-XSpp distribution. |
ExtUtils::XSpp::Node::PercAny - contains information about %Foo tags handled by plugins
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;