| Devel-IntelliPerl documentation | Contained in the Devel-IntelliPerl distribution. |
Devel::IntelliPerl::Editor - Base class for editor integration
version 0.04
Every subclass needs to specify this value.
Copyright 2009 Moritz Onken, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Devel-IntelliPerl documentation | Contained in the Devel-IntelliPerl distribution. |
package Devel::IntelliPerl::Editor; our $VERSION = '0.04'; use Moose; has editor => ( isa => 'Str', is => 'ro', required => 1 ); __PACKAGE__->meta->make_immutable; __END__