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

Unified Diff: tests/lib/async/catch_errors27_test.dart

Issue 26151002: Rename runAsync to scheduleMicrotask. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add test. Created 7 years, 2 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 | « tests/lib/async/catch_errors24_test.dart ('k') | tests/lib/async/catch_errors3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/catch_errors27_test.dart
diff --git a/tests/lib/async/catch_errors27_test.dart b/tests/lib/async/catch_errors27_test.dart
index 65bfbfba8139641f65339028c29251730b533994..9a8ab8b734357ecb1e078218d8aaecebd39017cf 100644
--- a/tests/lib/async/catch_errors27_test.dart
+++ b/tests/lib/async/catch_errors27_test.dart
@@ -31,7 +31,7 @@ main() {
.transform(new StreamTransformer.fromHandlers(
handleError: (e, st, sink) { sink.add("error $e"); }))
.listen((x) { events.add("stream $x"); });
- runAsync(() {
+ scheduleMicrotask(() {
controller.add(1);
// Errors are not allowed to traverse boundaries, but in this case the
// first listener of the broadcast stream is in the same error-zone. So
« no previous file with comments | « tests/lib/async/catch_errors24_test.dart ('k') | tests/lib/async/catch_errors3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698