| Index: test/dart_codegen/expect/core/duration.dart
|
| diff --git a/test/dart_codegen/expect/core/duration.dart b/test/dart_codegen/expect/core/duration.dart
|
| index af15cffd7684823819d0940d84a5fa970ca1c1a5..0d7ce42d42aeb94b4fe2658cc7f9be4ab1e6b38c 100644
|
| --- a/test/dart_codegen/expect/core/duration.dart
|
| +++ b/test/dart_codegen/expect/core/duration.dart
|
| @@ -77,16 +77,15 @@ class Duration implements Comparable<Duration> {
|
| if (inMicroseconds < 0) {
|
| return "-${-this}";
|
| }
|
| - String twoDigitMinutes = twoDigits(((__x11) => DDC$RT.cast(__x11, num, int,
|
| + String twoDigitMinutes = twoDigits(((__x0) => DDC$RT.cast(__x0, num, int,
|
| "CastGeneral", """line 258, column 40 of dart:core/duration.dart: """,
|
| - __x11 is int, true))(inMinutes.remainder(MINUTES_PER_HOUR)));
|
| - String twoDigitSeconds = twoDigits(((__x12) => DDC$RT.cast(__x12, num, int,
|
| + __x0 is int, true))(inMinutes.remainder(MINUTES_PER_HOUR)));
|
| + String twoDigitSeconds = twoDigits(((__x1) => DDC$RT.cast(__x1, num, int,
|
| "CastGeneral", """line 259, column 40 of dart:core/duration.dart: """,
|
| - __x12 is int, true))(inSeconds.remainder(SECONDS_PER_MINUTE)));
|
| - String sixDigitUs = sixDigits(((__x13) => DDC$RT.cast(__x13, num, int,
|
| + __x1 is int, true))(inSeconds.remainder(SECONDS_PER_MINUTE)));
|
| + String sixDigitUs = sixDigits(((__x2) => DDC$RT.cast(__x2, num, int,
|
| "CastGeneral", """line 261, column 19 of dart:core/duration.dart: """,
|
| - __x13 is int,
|
| - true))(inMicroseconds.remainder(MICROSECONDS_PER_SECOND)));
|
| + __x2 is int, true))(inMicroseconds.remainder(MICROSECONDS_PER_SECOND)));
|
| return "$inHours:$twoDigitMinutes:$twoDigitSeconds.$sixDigitUs";
|
| }
|
| bool get isNegative => _duration < 0;
|
|
|