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


MooseX-Declare documentation  | view source Contained in the MooseX-Declare distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  use MooseX::Declare;

  namespace Foo::Bar;

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

DESCRIPTION

Top

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 {
      ...
  }

METHODS

Top

parse

  Object->parse(Object $context)

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

CONSUMES

Top

SEE ALSO

Top

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


MooseX-Declare documentation  | view source Contained in the MooseX-Declare distribution.