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

Side by Side Diff: packages/when/lib/when.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « packages/when/example/read_json_file.dart ('k') | packages/when/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 library when; 2 library when;
3 3
4 import 'dart:async'; 4 import 'dart:async';
5 5
6 /// Registers callbacks on the result of a [callback], which may or may not be 6 /// Registers callbacks on the result of a [callback], which may or may not be
7 /// a [Future]. 7 /// a [Future].
8 /// 8 ///
9 /// If [callback] returns a future, any of [onSuccess], [onError], or 9 /// If [callback] returns a future, any of [onSuccess], [onError], or
10 /// [onComplete] that are provided are registered on the future, 10 /// [onComplete] that are provided are registered on the future,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 } 59 }
60 if (onComplete != null) onComplete(); 60 if (onComplete != null) onComplete();
61 } 61 }
62 } 62 }
63 63
64 return result; 64 return result;
65 } 65 }
66 66
67 typedef _Unary(x); 67 typedef _Unary(x);
68 typedef _Binary(x, y); 68 typedef _Binary(x, y);
OLDNEW
« no previous file with comments | « packages/when/example/read_json_file.dart ('k') | packages/when/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698