| Index: pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/utilities_collection.dart b/pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| index 6a74d97ce78a9278df248c2499b3d6e1462c2486..ef713f706a3924a3658c5162c958957b93dbca9d 100644
|
| --- a/pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| +++ b/pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| @@ -24,7 +24,7 @@ class BooleanArray {
|
| * @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive
|
| */
|
| static bool get(int array, int index) {
|
| - checkIndex(index);
|
| + _checkIndex(index);
|
| return (array & (1 << index)) > 0;
|
| }
|
|
|
| @@ -48,7 +48,7 @@ class BooleanArray {
|
| * @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive
|
| */
|
| static int set(int array, int index, bool value) {
|
| - checkIndex(index);
|
| + _checkIndex(index);
|
| if (value) {
|
| return array | (1 << index);
|
| } else {
|
| @@ -73,7 +73,7 @@ class BooleanArray {
|
| *
|
| * @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive
|
| */
|
| - static void checkIndex(int index) {
|
| + static void _checkIndex(int index) {
|
| if (index < 0 || index > 30) {
|
| throw new RangeError("Index not between 0 and 30: ${index}");
|
| }
|
|
|