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

Unified Diff: compiler/java/com/google/dart/compiler/type/InterfaceType.java

Issue 9270016: Issue 932. Checks for various named arguments cases. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks for comments, changes in tests. Created 8 years, 11 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/type/InterfaceType.java
diff --git a/compiler/java/com/google/dart/compiler/type/InterfaceType.java b/compiler/java/com/google/dart/compiler/type/InterfaceType.java
index 553f1b0ddaa9bc9962327ee23baa067629ddbfe6..5715e4687cf47e88a2672c37f7083be705686f56 100644
--- a/compiler/java/com/google/dart/compiler/type/InterfaceType.java
+++ b/compiler/java/com/google/dart/compiler/type/InterfaceType.java
@@ -14,13 +14,13 @@ import java.util.List;
*/
public interface InterfaceType extends Type {
@Override
- InterfaceType subst(List<? extends Type> arguments,
- List<? extends Type> parameters);
+ InterfaceType subst(List<Type> arguments,
+ List<Type> parameters);
@Override
ClassElement getElement();
- List<? extends Type> getArguments();
+ List<Type> getArguments();
boolean isRaw();

Powered by Google App Engine
This is Rietveld 408576698