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

Unified Diff: test/dart_codegen/expect/async/schedule_microtask.dart

Issue 1038583004: Rationalize coercions (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase Created 5 years, 9 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/async/future_impl.dart ('k') | test/dart_codegen/expect/async/stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/async/schedule_microtask.dart
diff --git a/test/dart_codegen/expect/async/schedule_microtask.dart b/test/dart_codegen/expect/async/schedule_microtask.dart
index b7665677a51abac467df99b27bd7bb78db2f8309..ac8ca0f382449ad7bd7157582314d0d872cb810c 100644
--- a/test/dart_codegen/expect/async/schedule_microtask.dart
+++ b/test/dart_codegen/expect/async/schedule_microtask.dart
@@ -30,19 +30,19 @@ _isInCallbackLoop = true;
}
void _scheduleAsyncCallback(callback) {
if (_nextCallback == null) {
- _nextCallback = _lastCallback = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t28, "CastGeneral", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
+ _nextCallback = _lastCallback = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t28, "CompositeCast", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
if (!_isInCallbackLoop) {
_AsyncRun._scheduleImmediate(_asyncRunCallback);
}
}
else {
- _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t28, "CastGeneral", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
+ _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t28, "CompositeCast", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
_lastCallback.next = newEntry;
_lastCallback = newEntry;
}
}
void _schedulePriorityAsyncCallback(callback) {
-_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t28, "CastGeneral", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
+_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t28, "CompositeCast", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
if (_nextCallback == null) {
_scheduleAsyncCallback(callback);
_lastPriorityCallback = _lastCallback;
« no previous file with comments | « test/dart_codegen/expect/async/future_impl.dart ('k') | test/dart_codegen/expect/async/stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698