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

Unified Diff: third_party/pkg/js/test/js/browser_tests.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 | « third_party/pkg/js/lib/js.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pkg/js/test/js/browser_tests.dart
diff --git a/third_party/pkg/js/test/js/browser_tests.dart b/third_party/pkg/js/test/js/browser_tests.dart
index 1595fbecca1ee37410e39f92c302c959048f1573..db8fb3c83041c27accc22076ff8f07672af13535 100644
--- a/third_party/pkg/js/test/js/browser_tests.dart
+++ b/third_party/pkg/js/test/js/browser_tests.dart
@@ -279,7 +279,7 @@ main() {
expect(js.context.invokeCallback(), equals(42));
};
- runAsync(expectAsync0(subtest));
+ scheduleMicrotask(expectAsync0(subtest));
});
test('global scope', () {
@@ -517,6 +517,6 @@ main() {
final verifyNoLeaks = expectAsync0(() => expect(0, js.proxyCount()));
// Run this check asychnronously to ensure that any current scope is
// cleared first.
- runAsync(verifyNoLeaks);
+ scheduleMicrotask(verifyNoLeaks);
});
}
« no previous file with comments | « third_party/pkg/js/lib/js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698