POOF::Example::SyntaxError - Class with syntax error for testing POOF ability


POOF documentation Contained in the POOF distribution.

Index


Code Index:

NAME

Top

POOF::Example::SyntaxError - Class with syntax error for testing POOF ability to detect and renter syntax errors correctly.

SYNOPSIS

Top

Todo

SEE ALSO

Top

POOF man page.

AUTHOR

Top

Benny Millares <bmillares@cpan.org>

COPYRIGHT AND LICENSE

Top


POOF documentation Contained in the POOF distribution.

package POOF::Example::SyntaxError;

use strict;
use warnings;

use base qw(POOF);


#-------------------------------------------------------------------------------
# init 

#-------------------------------------------------------------------------------
# properties

sub SomeProperty : Property Public
{
    {
        'type' => 'integer',
        'default' => 0,
    }
}

#-------------------------------------------------------------------------------
# methods

sub SomeMethod : Method Public
{
    my $obj = shift;
    asdf
}


1;
__END__