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

Unified Diff: pkg/analysis_server/lib/src/services/refactoring/refactoring.dart

Issue 547343004: Send feedback for the INLINE_LOCAL_VARIABLE refactoring. (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: pkg/analysis_server/lib/src/services/refactoring/refactoring.dart
diff --git a/pkg/analysis_server/lib/src/services/refactoring/refactoring.dart b/pkg/analysis_server/lib/src/services/refactoring/refactoring.dart
index 122d65b72d268bc5162c446b6c8b8dfc27fe7372..00c5cb09f68a7249c557fe5a9a134660b76e3e1a 100644
--- a/pkg/analysis_server/lib/src/services/refactoring/refactoring.dart
+++ b/pkg/analysis_server/lib/src/services/refactoring/refactoring.dart
@@ -195,6 +195,11 @@ abstract class InlineLocalRefactoring implements Refactoring {
* Returns the number of references to the [VariableElement].
*/
int get referenceCount;
+
+ /**
+ * Returns the name of the variable being inlined.
+ */
+ String get variableName;
}

Powered by Google App Engine
This is Rietveld 408576698