From 74f5d4a1bdd12f02aac9ff9fe3bd549bcfb42ceb Mon Sep 17 00:00:00 2001 From: axelcl Date: Sun, 15 Jan 2006 21:56:00 +0000 Subject: [PATCH] For refactoring tests, uncomment the refactoring action: net.sourceforge.phpdt.ltk.ui.actions.RenameLocalVariable This refactoring replaces any $-variable inside a function or method declaration The action can detect the scope of a PHP function or class method. Currently this refactoring doesn't replace variables inside double quoted strings. This refactoring doesn't look for global variables inside the function or method. This refactoring doesn't look correctly for "self::" and "$this" tokens inside the function or method. This refactoring doesn't look for a preceding PHPDoc comment and therefore cannot replace any local variables inside the PHPdoc comment. --- net.sourceforge.phpeclipse/plugin.xml | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/net.sourceforge.phpeclipse/plugin.xml b/net.sourceforge.phpeclipse/plugin.xml index f48ed5d..3dde386 100644 --- a/net.sourceforge.phpeclipse/plugin.xml +++ b/net.sourceforge.phpeclipse/plugin.xml @@ -795,6 +795,22 @@ id="net.sourceforge.phpeclipse.actions.PHPOpenDeclarationEditorAction"> + -- 1.7.1