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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart

Issue 23852002: java2dart improvements and new analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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: pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart b/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart
index 9e33a1a0427480d289f6cafec0465a64e44ec3f3..4dd72cb15fa5a8f6f092b0bec889a51f01f623e6 100644
--- a/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart
@@ -16,7 +16,7 @@ class BooleanArray {
* @return the value of the element at the given index
* @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive
*/
- static bool get(int array, Enum<Object> index) => get2(array, index.ordinal);
+ static bool get(int array, Enum index) => get2(array, index.ordinal);
/**
* Return the value of the element at the given index.
@@ -40,7 +40,7 @@ class BooleanArray {
* @return the updated value of the array
* @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive
*/
- static int set(int array, Enum<Object> index, bool value) => set2(array, index.ordinal, value);
+ static int set(int array, Enum index, bool value) => set2(array, index.ordinal, value);
/**
* Set the value of the element at the given index to the given value.

Powered by Google App Engine
This is Rietveld 408576698