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

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

Issue 967933005: rename ddc -> dev_compiler, fixes #84 (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/core ('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 d1fe9d017d68d5b0b60acb824dbe6e38fc0a155b..b8f1945110ed0e7d58b3bfc95bf47a9a5be18275 100644
--- a/test/dart_codegen/expect/core/duration.dart
+++ b/test/dart_codegen/expect/core/duration.dart
@@ -65,9 +65,9 @@ part of dart.core;
if (inMicroseconds < 0) {
return "-${-this}";
}
- String twoDigitMinutes = twoDigits(((__x0) => DDC$RT.cast(__x0, num, int, "CastGeneral", """line 258, column 40 of dart:core/duration.dart: """, __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: """, __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: """, __x2 is int, true))(inMicroseconds.remainder(MICROSECONDS_PER_SECOND)));
+ String twoDigitMinutes = twoDigits(((__x0) => DEVC$RT.cast(__x0, num, int, "CastGeneral", """line 258, column 40 of dart:core/duration.dart: """, __x0 is int, true))(inMinutes.remainder(MINUTES_PER_HOUR)));
+ String twoDigitSeconds = twoDigits(((__x1) => DEVC$RT.cast(__x1, num, int, "CastGeneral", """line 259, column 40 of dart:core/duration.dart: """, __x1 is int, true))(inSeconds.remainder(SECONDS_PER_MINUTE)));
+ String sixDigitUs = sixDigits(((__x2) => DEVC$RT.cast(__x2, num, int, "CastGeneral", """line 261, column 19 of dart:core/duration.dart: """, __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/core ('k') | test/dart_codegen/expect/core/errors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698