package Compiler::Parser::Node::Package; use strict; use warnings; use base 'Compiler::Parser::Node'; 1; __END__ =pod =head1 NAME Compiler::Parser::Node::Package =head1 INHERITANCE Compiler::Parser::Node::Package isa Compiler::Parser::Node =head1 DESCRIPTION This node has 'next' pointer to access next statement's node. =head1 LAYOUT ______________ _____________ | | next | | | Package |----->| | |______________| |_____________| =head2 Example e.g.) package Person; ... | __________|__________ _________ | | next | | | Package(Person) |----->| ..... | |_____________________| |_________| =head1 SEE ALSO [Compiler::Parser::Node](http://search.cpan.org/perldoc?Compiler::Parser::Node) =head1 AUTHOR Masaaki Goshima (goccy) =head1 COPYRIGHT AND LICENSE Copyright (C) Masaaki Goshima (goccy). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut