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

Unified Diff: compiler/java/com/google/dart/compiler/type/Type.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/Type.java
diff --git a/compiler/java/com/google/dart/compiler/type/Type.java b/compiler/java/com/google/dart/compiler/type/Type.java
index 0040a1632767a3fbf2b79f6d0b39eef971d77c44..e45d0a348017303d11aabc33ba536bb81ac18c0e 100644
--- a/compiler/java/com/google/dart/compiler/type/Type.java
+++ b/compiler/java/com/google/dart/compiler/type/Type.java
@@ -18,7 +18,7 @@ public interface Type {
* (lambda x.e0)e1 -> [e1/x]e0.
* <p>See {@link TypeVariable} for a motivation for this method.
*/
- Type subst(List<? extends Type> arguments, List<? extends Type> parameters);
+ Type subst(List<Type> arguments, List<Type> parameters);
Element getElement();

Powered by Google App Engine
This is Rietveld 408576698