From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

MooseX::Declare::Syntax::Keyword::Namespace - Declare outer namespace

SYNOPSIS

namespace Foo::Bar;
class ::Baz extends ::Qux with ::Fnording {
...
}

DESCRIPTION

The namespace keyword allows you to declare an outer namespace under which other namespaced constructs can be nested. The "SYNOPSIS" is effectively the same as

class Foo::Bar::Baz extends Foo::Bar::Qux with Foo::Bar::Fnording {
...
}

CONSUMES

METHODS

parse

Object->parse(Object $context)

Will skip the declarator, parse the namespace and push the namespace in the file package stack.

SEE ALSO

AUTHOR, COPYRIGHT & LICENSE

See MooseX::Declare