[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
perl
/
vendor
/
lib
/
MooseX
/
Declare
/
Syntax
/
Keyword
/
[
Home
]
File: Namespace.pm
package MooseX::Declare::Syntax::Keyword::Namespace; # ABSTRACT: Declare outer namespace our $VERSION = '0.43'; use Moose; use Carp qw( confess ); use MooseX::Declare::Util qw( outer_stack_push outer_stack_peek ); use namespace::autoclean; #pod =head1 SYNOPSIS #pod #pod use MooseX::Declare; #pod #pod namespace Foo::Bar; #pod #pod class ::Baz extends ::Qux with ::Fnording { #pod ... #pod } #pod #pod =head1 DESCRIPTION #pod #pod The C<namespace> keyword allows you to declare an outer namespace under #pod which other namespaced constructs can be nested. The L</SYNOPSIS> is #pod effectively the same as #pod #pod use MooseX::Declare; #pod #pod class Foo::Bar::Baz extends Foo::Bar::Qux with Foo::Bar::Fnording { #pod ... #pod } #pod #pod =head1 CONSUMES #pod #pod =for :list #pod * L<MooseX::Declare::Syntax::KeywordHandling> #pod #pod =cut with qw( MooseX::Declare::Syntax::KeywordHandling ); #pod =method parse #pod #pod Object->parse(Object $context) #pod #pod Will skip the declarator, parse the namespace and push the namespace #pod in the file package stack. #pod #pod =cut sub parse { my ($self, $ctx) = @_; confess "Nested namespaces are not supported yet" if outer_stack_peek $ctx->caller_file; $ctx->skip_declarator; my $namespace = $ctx->strip_word or confess "Expected a namespace argument to use from here on"; confess "Relative namespaces are currently not supported" if $namespace =~ /^::/; $ctx->skipspace; my $next_char = $ctx->peek_next_char; confess "Expected end of statement after namespace argument" unless $next_char eq ';'; outer_stack_push $ctx->caller_file, $namespace; } #pod =head1 SEE ALSO #pod #pod =for :list #pod * L<MooseX::Declare> #pod #pod =cut 1; __END__ =pod =encoding UTF-8 =head1 NAME MooseX::Declare::Syntax::Keyword::Namespace - Declare outer namespace =head1 VERSION version 0.43 =head1 SYNOPSIS use MooseX::Declare; namespace Foo::Bar; class ::Baz extends ::Qux with ::Fnording { ... } =head1 DESCRIPTION The C<namespace> keyword allows you to declare an outer namespace under which other namespaced constructs can be nested. The L</SYNOPSIS> is effectively the same as use MooseX::Declare; class Foo::Bar::Baz extends Foo::Bar::Qux with Foo::Bar::Fnording { ... } =head1 METHODS =head2 parse Object->parse(Object $context) Will skip the declarator, parse the namespace and push the namespace in the file package stack. =head1 CONSUMES =over 4 =item * L<MooseX::Declare::Syntax::KeywordHandling> =back =head1 SEE ALSO =over 4 =item * L<MooseX::Declare> =back =head1 AUTHOR Florian Ragwitz <rafl@debian.org> =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2008 by Florian Ragwitz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut