Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RefactorActionGroup_OLD.java

Issue 554143003: Integrate the EXTRACT_METHOD refactoring into Editor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RefactorActionGroup_OLD.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RefactorActionGroup_OLD.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RefactorActionGroup_OLD.java
index ef87441c47f03500c0e89bb474c71d025bf6f10c..c89ad2e8a2581362dae9e6929b360dffd172fdf9 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RefactorActionGroup_OLD.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/RefactorActionGroup_OLD.java
@@ -30,7 +30,7 @@ public class RefactorActionGroup_OLD extends AbstractDartSelectionActionGroup {
private RenameAction_OLD renameAction;
private ExtractLocalAction_OLD extractLocalAction;
- private ExtractMethodAction extractMethodAction;
+ private ExtractMethodAction_OLD extractMethodAction;
private InlineAction_OLD inlineAction;
private ConvertMethodToGetterAction convertMethodToGetterAction;
private ConvertGetterToMethodAction convertGetterToMethodAction;
@@ -39,7 +39,7 @@ public class RefactorActionGroup_OLD extends AbstractDartSelectionActionGroup {
super(editor);
renameAction = new RenameAction_OLD(editor);
extractLocalAction = new ExtractLocalAction_OLD(editor);
- extractMethodAction = new ExtractMethodAction(editor);
+ extractMethodAction = new ExtractMethodAction_OLD(editor);
inlineAction = new InlineAction_OLD(editor);
convertMethodToGetterAction = new ConvertMethodToGetterAction(editor);
convertGetterToMethodAction = new ConvertGetterToMethodAction(editor);

Powered by Google App Engine
This is Rietveld 408576698