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

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

Issue 1052383003: Disable closure wrapping by default (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: 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 6c40d71a29bbdefc4d2c9251b9c6bacb82b338a5..d15ff2a8bd20312401488c0030906a12e24dcdf7 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, __t24, "CompositeCast", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t24, false));
+ _nextCallback = _lastCallback = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t20, "CompositeCast", """line 66, column 61 of dart:async/schedule_microtask.dart: """, callback is __t20, false));
if (!_isInCallbackLoop) {
_AsyncRun._scheduleImmediate(_asyncRunCallback);
}
}
else {
- _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t24, "CompositeCast", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t24, false));
+ _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t20, "CompositeCast", """line 71, column 60 of dart:async/schedule_microtask.dart: """, callback is __t20, false));
_lastCallback.next = newEntry;
_lastCallback = newEntry;
}
}
void _schedulePriorityAsyncCallback(callback) {
-_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t24, "CompositeCast", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t24, false));
+_AsyncCallbackEntry entry = new _AsyncCallbackEntry(DEVC$RT.cast(callback, dynamic, __t20, "CompositeCast", """line 84, column 55 of dart:async/schedule_microtask.dart: """, callback is __t20, 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 __t24();
+ typedef void __t20();

Powered by Google App Engine
This is Rietveld 408576698