| Index: tests/lib_strong/mirrors/accessor_cache_overflow_test.dart
|
| diff --git a/tests/lib_strong/mirrors/accessor_cache_overflow_test.dart b/tests/lib_strong/mirrors/accessor_cache_overflow_test.dart
|
| index 860bc93a697481b331dd3dfcc73bbc9adc62057c..5703ea1b1247b8780b3ba35b46f4adcc5e1edcb7 100644
|
| --- a/tests/lib_strong/mirrors/accessor_cache_overflow_test.dart
|
| +++ b/tests/lib_strong/mirrors/accessor_cache_overflow_test.dart
|
| @@ -14,8 +14,24 @@ import 'package:expect/expect.dart';
|
| const int optimizationThreshold = 20;
|
|
|
| main() {
|
| - var digits =
|
| - ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'];
|
| + var digits = [
|
| + '0',
|
| + '1',
|
| + '2',
|
| + '3',
|
| + '4',
|
| + '5',
|
| + '6',
|
| + '7',
|
| + '8',
|
| + '9',
|
| + 'A',
|
| + 'B',
|
| + 'C',
|
| + 'D',
|
| + 'E',
|
| + 'F'
|
| + ];
|
| var symbols = new List();
|
| for (var high in digits) {
|
| for (var low in digits) {
|
|
|