Chromium Code Reviews| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/ErrorChecker.java |
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/ErrorChecker.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/ErrorChecker.java |
| index d704df607118ec24cddb81836191b93cf7962a30..4bb3f07319cc0fe3592cd66370768910b93db544 100644 |
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/ErrorChecker.java |
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/ErrorChecker.java |
| @@ -13,11 +13,11 @@ |
| */ |
| package com.google.dart.tools.core.internal.builder; |
| -import com.google.dart.compiler.ast.DartPlainVisitor; |
| +import com.google.dart.compiler.ast.ASTVisitor; |
| /** |
| * The interface <code>ErrorChecker</code> defines the behavior of objects that can be used to check |
|
Brian Wilkerson
2012/03/05 16:57:35
nit: "interface" -> "class"
scheglov
2012/03/05 17:22:51
Done.
|
| * for error conditions not checked for by the compiler. |
| */ |
| -public interface ErrorChecker extends DartPlainVisitor<Void> { |
| +public class ErrorChecker extends ASTVisitor<Void> { |
| } |