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

Unified Diff: test/dart_codegen/expect/core/duration.dart

Issue 961493003: don't run dart gen on JS patch code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « test/dart_codegen/expect/core/double.dart ('k') | test/dart_codegen/expect/core/errors.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « test/dart_codegen/expect/core/double.dart ('k') | test/dart_codegen/expect/core/errors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698