| 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 7d1c45d8700687bd84de09df1d5480c7ea12757b..20b21d48c08cdcaae71628bad5b026732c64122e 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
|
| @@ -138,6 +138,11 @@ public class ElementLabelProvider_NEW extends LabelProvider implements
|
| public StyledString getStyledText(Object obj, String text) {
|
| Element element = (Element) obj;
|
| StyledString styledString = new StyledString(text);
|
| + // append type parameters
|
| + String typeParameters = element.getTypeParameters();
|
| + if (typeParameters != null) {
|
| + styledString.append(typeParameters);
|
| + }
|
| // append parameters
|
| String parameters = element.getParameters();
|
| if (parameters != null) {
|
|
|