| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinder.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinder.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinder.java
|
| index 7ca44a30f390fc4bd8dfa171e69f1a85ac7a4ae0..179a6f2cb2f3a3282422105d4bedfbef3f02587e 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinder.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinder.java
|
| @@ -4,7 +4,7 @@ import com.google.dart.compiler.ast.DartFunction;
|
| import com.google.dart.compiler.ast.DartFunctionTypeAlias;
|
| import com.google.dart.compiler.ast.DartMethodDefinition;
|
| 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.DartParameter;
|
| import com.google.dart.compiler.resolver.Element;
|
| import com.google.dart.compiler.resolver.VariableElement;
|
| @@ -12,7 +12,7 @@ import com.google.dart.compiler.resolver.VariableElement;
|
| import java.util.ArrayList;
|
| import java.util.List;
|
|
|
| -public class NameOccurrencesFinder extends DartNodeTraverser<Void> {
|
| +public class NameOccurrencesFinder extends ASTVisitor<Void> {
|
|
|
| private DartNode ast;
|
| private Element target;
|
|
|