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: tests/lib/async/zone_empty_description2_test.dart

Issue 87283003: Make the root zone's schduleMicrotask and create[Periodic]Timer bind the callback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding missing typo fixes. Created 7 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/zone_empty_description2_test.dart
diff --git a/tests/lib/async/zone_empty_description2_test.dart b/tests/lib/async/zone_empty_description2_test.dart
index 8fd4ad1fe4016be019d6f4b4590a8e7ba8cd8a2c..ce123e98c5cfad597d1911bed0a1b51b8fec5911 100644
--- a/tests/lib/async/zone_empty_description2_test.dart
+++ b/tests/lib/async/zone_empty_description2_test.dart
@@ -14,7 +14,7 @@ testEmptyZoneSpecification() {
asyncStart();
bool timerDidRun = false;
forked.createTimer(const Duration(milliseconds: 20), () {
- // The createTimer functions on the Zone binds the closures.
+ // The createTimer function on the Zone binds the closures.
Expect.identical(forked, Zone.current);
timerDidRun = true;
asyncEnd();
@@ -29,7 +29,7 @@ testEmptyZoneSpecification() {
timer.cancel();
asyncEnd();
}
- // The createPeriodicTimer functions on the Zone binds the closures.
+ // The createPeriodicTimer function on the Zone binds the closures.
Expect.identical(forked, Zone.current);
});
Expect.identical(Zone.ROOT, Zone.current);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698