NAME

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

SYNOPSIS

use MooseX::Declare;

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

use MooseX::Declare;

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