| Index: runtime/lib/integers.dart
|
| diff --git a/runtime/lib/integers.dart b/runtime/lib/integers.dart
|
| index 4d4759134b6a7ba6d6d4c4f6d76118fbc32193c7..c1a79c8f843e7f9a4c9e596090f43dd603d19196 100644
|
| --- a/runtime/lib/integers.dart
|
| +++ b/runtime/lib/integers.dart
|
| @@ -137,7 +137,7 @@ class IntegerImplementation {
|
| }
|
| String toRadixString(int radix) {
|
| final table = const ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
|
| - "A", "B", "C", "D", "E", "F"];
|
| + "a", "b", "c", "d", "e", "f"];
|
| if ((radix <= 1) || (radix > 16)) {
|
| throw "Bad radix: $radix";
|
| }
|
|
|