Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/builder/ErrorChecker.java

Issue 9598002: Use ASTVisitor as in new AST. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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> {
}

Powered by Google App Engine
This is Rietveld 408576698