| 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 6ba73529f0c72887ea2fe80c0f47e19a69061131..2d4fae22bdff046768881e39b20b5245a9e04f6b 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
|
| @@ -29,7 +29,7 @@ import com.google.dart.compiler.ast.DartMethodDefinition;
|
| import com.google.dart.compiler.ast.DartMethodInvocation;
|
| import com.google.dart.compiler.ast.DartNewExpression;
|
| import com.google.dart.compiler.ast.DartNode;
|
| -import com.google.dart.compiler.ast.DartNodeTraverser;
|
| +import com.google.dart.compiler.ast.ASTVisitor;
|
| import com.google.dart.compiler.ast.DartParameterizedTypeNode;
|
| import com.google.dart.compiler.ast.DartPropertyAccess;
|
| import com.google.dart.compiler.ast.DartStatement;
|
| @@ -71,7 +71,7 @@ import java.util.ArrayList;
|
| * Instances of the class <code>IndexContributor</code> visit an AST structure to compute the data
|
| * and relationships to be contributed to an index.
|
| */
|
| -public class IndexContributor extends DartNodeTraverser<Void> {
|
| +public class IndexContributor extends ASTVisitor<Void> {
|
| /*
|
| * TODO(brianwilkerson) This class does not find or record implicit references, such as the
|
| * implicit invocation of toString() when an expression is embedded in a string interpolation
|
|
|