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

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

Issue 1038213003: Downward inference (Closed) Base URL: git@github.com:dart-lang/dart-dev-compiler.git@master
Patch Set: Small fixes 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
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 ac8ca0f382449ad7bd7157582314d0d872cb810c..230d439318f922b824809ffcc69a5239605fa1f8 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, "CompositeCast", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t28, false));
+ _nextCallback = _lastCallback = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t26, "CompositeCast", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t26, false));
if (!_isInCallbackLoop) {
_AsyncRun._scheduleImmediate(_asyncRunCallback);
}
}
else {
- _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));
+ _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t26, "CompositeCast", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t26, false));
_lastCallback.next = newEntry;
_lastCallback = newEntry;
}
}
void _schedulePriorityAsyncCallback(callback) {
-_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));
+_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t26, "CompositeCast", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t26, false));
if (_nextCallback == null) {
_scheduleAsyncCallback(callback);
_lastPriorityCallback = _lastCallback;
@@ -68,4 +68,4 @@ if (identical(_ROOT_ZONE, Zone.current)) {
}
class _AsyncRun {external static void _scheduleImmediate(void callback());
}
- typedef void __t28();
+ typedef void __t26();

Powered by Google App Engine
This is Rietveld 408576698