| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/CompilationUnitImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/CompilationUnitImpl.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/CompilationUnitImpl.java
|
| index 017a5a69c67b4ac8fea673ed6c638b0818e34e07..2ef6faf0bb080dd98e397e1e58d4e327610bd926 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/CompilationUnitImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/CompilationUnitImpl.java
|
| @@ -26,7 +26,7 @@ import com.google.dart.compiler.ast.DartIdentifier;
|
| import com.google.dart.compiler.ast.DartLibraryDirective;
|
| 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.ast.DartPropertyAccess;
|
| import com.google.dart.compiler.ast.DartTypeNode;
|
| @@ -551,7 +551,7 @@ public class CompilationUnitImpl extends SourceFileElementImpl<CompilationUnit>
|
| * The abstract class <code>StructureBuilder</code> are used to build the structure corresponding
|
| * to a compilation unit by visiting the AST structure for the compilation unit.
|
| */
|
| - private static abstract class StructureBuilder extends DartNodeTraverser<Void> {
|
| + private static abstract class StructureBuilder extends ASTVisitor<Void> {
|
| /**
|
| * A table mapping newly created elements to the info objects that correspond to them.
|
| */
|
|
|