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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameMethodProcessorTest.java

Issue 11665018: Fix for renaming named constructor reference in 'super' invocation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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_test/src/com/google/dart/tools/ui/refactoring/RenameMethodProcessorTest.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameMethodProcessorTest.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameMethodProcessorTest.java
index 9e34c8d25b57becbdba4ed8bd96a475d0b09ce9a..25143fe5d441bddcaf035d95a50ba895a06befb1 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameMethodProcessorTest.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameMethodProcessorTest.java
@@ -309,6 +309,9 @@ public final class RenameMethodProcessorTest extends RefactoringTest {
"class A {",
" A.test() {}",
"}",
+ "class B extends A {",
+ " B() : super.test() {}",
+ "}",
"main() {",
" new A.test();",
"}");
@@ -320,6 +323,9 @@ public final class RenameMethodProcessorTest extends RefactoringTest {
"class A {",
" A.newName() {}",
"}",
+ "class B extends A {",
+ " B() : super.newName() {}",
+ "}",
"main() {",
" new A.newName();",
"}");

Powered by Google App Engine
This is Rietveld 408576698