Padre::Task::PPI::IntroduceTemporaryVariable.3pm

Langue: en

Autres versions - même langue

Version: 2010-06-11 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Padre::Task::PPI::IntroduceTemporaryVariable - Introduces a temporary variable using PPI

SYNOPSIS

   my $tempvarmaker = Padre::Task::PPI::IntroduceTemporaryVariable->new(
           document       => $document_obj,
           start_location => [$line, $column], # or just character position
           end_location   => [$line, $column], # or ppi-style location
           varname        => '$foo',
   );
 
   $tempvarmaker->schedule();
 
 

DESCRIPTION

Given a region of code within a statement, replaces that code with a temporary variable. Declares and initializes the temporary variable right above the statement that included the selected expression.

Usually, you simply set "start_position" to what "$editor->GetSelectionStart()" returns and "end_position" to "$editor->GetSelectionEnd() - 1".

SEE ALSO

This class inherits from "Padre::Task::PPI".

AUTHOR

Steffen Mueller "smueller@cpan.org" Copyright 2008-2010 The Padre development team as listed in Padre.pm.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.