File: PercAny.pm

package info (click to toggle)
libextutils-xspp-perl 0.1800-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 996 kB
  • ctags: 1,861
  • sloc: perl: 8,324; cpp: 125; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package ExtUtils::XSpp::Node::PercAny;

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

=head1 NAME

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

=head1 DESCRIPTION

Used internally during parsing.

=cut

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

    $this->{NAME} = $args{any};
    $this->{NAMED_ARGUMENTS} = $args{named};
    $this->{POSITIONAL_ARGUMENTS} = $args{positional};
}

1;