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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/ClassElement.java

Issue 10627017: Removes compile-time error from implementing the same interface more than once (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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: compiler/java/com/google/dart/compiler/resolver/ClassElement.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/ClassElement.java b/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
index 0810331c559fe856b74c692f697f52ed86ccf8d7..3d8d619f782d38960cec45e55202528e272bf024 100644
--- a/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
@@ -29,11 +29,10 @@ public interface ClassElement extends EnclosingElement {
List<InterfaceType> getInterfaces();
- List<InterfaceType> getAllSupertypes()
- throws CyclicDeclarationException, DuplicatedInterfaceException;
+ List<InterfaceType> getAllSupertypes() throws CyclicDeclarationException;
String getNativeName();
-
+
/**
* FIXME(scheglov) We use this in {@link Resolver} to check that "factory" clause is exactly
* same as declaration of factory class.

Powered by Google App Engine
This is Rietveld 408576698