Devel::IntelliPerl::Editor - Base class for editor integration


Devel-IntelliPerl documentation Contained in the Devel-IntelliPerl distribution.

Index


Code Index:

NAME

Top

Devel::IntelliPerl::Editor - Base class for editor integration

VERSION

Top

version 0.04

METHODS

Top

editor

Every subclass needs to specify this value.

COPYRIGHT & LICENSE

Top


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__