| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/index/contributor/IndexContributor.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/index/contributor/IndexContributor.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/index/contributor/IndexContributor.java
|
| index 1e72ee40530db29d6d8b45f51984e2dc08b0cf0b..a5e767678b79b3535ab1b7e51181fd11f58749ef 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/index/contributor/IndexContributor.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/index/contributor/IndexContributor.java
|
| @@ -54,7 +54,6 @@ import com.google.dart.compiler.resolver.ConstructorElement;
|
| import com.google.dart.compiler.resolver.FieldElement;
|
| import com.google.dart.compiler.resolver.LibraryElement;
|
| import com.google.dart.compiler.resolver.MethodElement;
|
| -import com.google.dart.compiler.resolver.NodeElement;
|
| import com.google.dart.compiler.resolver.VariableElement;
|
| import com.google.dart.compiler.type.InterfaceType;
|
| import com.google.dart.compiler.util.apache.StringUtils;
|
| @@ -317,7 +316,7 @@ public class IndexContributor extends ASTVisitor<Void> {
|
|
|
| @Override
|
| public Void visitCommentRefName(DartCommentRefName node) {
|
| - NodeElement element = node.getElement();
|
| + com.google.dart.compiler.resolver.Element element = node.getElement();
|
| if (element != null) {
|
| try {
|
| Element indexElement = ElementFactory.getElement(element);
|
|
|