The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Perl::Analysis::Static::Question::Lexical::Name;
{
  $Perl::Analysis::Static::Question::Lexical::Name::VERSION = '0.004'; # TRIAL
}
# ABSTRACT: Does the name of the lexical variable equal this string?

use Moose;

extends 'Perl::Analysis::Static::Question';

sub set_arguments {
    my ( $self, $arguments ) = @_;
    $self->class('Perl::Analysis::Static::Element::Declaration::Variable');
    $self->filter( ['Name'] );
    $self->arguments( [ split( /:/, $arguments ) ] );
}

1;

__END__
=pod

=head1 NAME

Perl::Analysis::Static::Question::Lexical::Name - Does the name of the lexical variable equal this string?

=head1 VERSION

version 0.004

=head1 AUTHOR

Gregor Goldbach <glauschwuffel@nomaden.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Gregor Goldbach.

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