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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java

Issue 12604020: analyzer_experimental checkpoint and AnalysisContext example. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java
index cb9c3f8aa5639f81612da3079f8ff7713d190877..5174e62d00e2dc15618a61b4aa5dec50abe12a2c 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/verifier/ErrorVerifier.java
@@ -648,7 +648,7 @@ public class ErrorVerifier extends RecursiveASTVisitor<Void> {
boolean result = false;
for (TypeName type : implementsClause.getInterfaces()) {
result = result
- | checkForExtendsOrImplementsDisallowedClass(
+ || checkForExtendsOrImplementsDisallowedClass(
Brian Wilkerson 2013/03/18 20:30:57 This should not be changed. Otherwise we'll stop c
scheglov 2013/03/18 20:34:14 Aha! Thank you, I will rollback this.
type,
CompileTimeErrorCode.IMPLEMENTS_DISALLOWED_CLASS);;
}

Powered by Google App Engine
This is Rietveld 408576698