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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java

Issue 576443002: Search for LabelElement and icon for LABEL in 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/internal/text/editor/ElementLabelProvider_NEW.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
index e19f99f02c153b5845bbb288db4946fe401d235b..9a089804a10888d184c7482c99736f6838ee48e3 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
@@ -86,6 +86,8 @@ public class ElementLabelProvider_NEW extends LabelProvider implements
return DartPluginImages.DESC_DART_COMP_UNIT;
} else if (elementKind.equals(ElementKind.LIBRARY)) {
return DartPluginImages.DESC_DART_LIB_FILE;
+ } else if (elementKind.equals(ElementKind.LABEL)) {
+ return DartPluginImages.DESC_DART_LABEL;
} else if (elementKind.equals(ElementKind.LOCAL_VARIABLE)
|| elementKind.equals(ElementKind.PARAMETER)) {
return DartPluginImages.DESC_DART_LOCAL_VARIABLE;

Powered by Google App Engine
This is Rietveld 408576698