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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/TypeProvider.java

Issue 913623002: Partial backport of analyzer async/await fixes to Java. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix status files Created 5 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.engine/src/com/google/dart/engine/internal/resolver/TypeProvider.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/TypeProvider.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/TypeProvider.java
index dd4652d03590a734d712b22c7883a5c4f7ff4e81..24ae4a50d74aaa68c527812dfb3e1a42adcd4bd4 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/TypeProvider.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/resolver/TypeProvider.java
@@ -73,6 +73,16 @@ public interface TypeProvider {
public InterfaceType getIntType();
/**
+ * Return the type representing the type 'Iterable<dynamic>'.
+ */
+ public InterfaceType getIterableDynamicType();
+
+ /**
+ * Return the type representing the built-in type 'Iterable'.
+ */
+ public InterfaceType getIterableType();
+
+ /**
* Return the type representing the built-in type 'List'.
*
* @return the type representing the built-in type 'List'

Powered by Google App Engine
This is Rietveld 408576698