package Text::Xslate::PP::Type::Pair; use Mouse; has [qw(key value)] => ( is => 'rw', required => 1, ); no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME Text::Xslate::PP::Type::Pair - Text::Xslate builtin pair type in pure Perl =head1 DESCRIPTION This module is used by Text::Xslate::PP internally. =head1 SEE ALSO L L =cut