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

Side by Side Diff: sdk/lib/core/future_impl.dart

Issue 11612020: Revert "Switch libraries to using new tags." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/core/future.dart ('k') | sdk/lib/core/hashable.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 Google Inc. All Rights Reserved. 1 // Copyright 2012 Google Inc. All Rights Reserved.
2 // Dart core library. 2 // Dart core library.
3 3
4 part of dart.core;
5
6 class _FutureImpl<T> implements Future<T> { 4 class _FutureImpl<T> implements Future<T> {
7 5
8 bool _isComplete = false; 6 bool _isComplete = false;
9 7
10 /** 8 /**
11 * Value that was provided to this Future by the Completer 9 * Value that was provided to this Future by the Completer
12 */ 10 */
13 T _value; 11 T _value;
14 12
15 /** 13 /**
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 280
283 void complete(T value) { 281 void complete(T value) {
284 _futureImpl._setValue(value); 282 _futureImpl._setValue(value);
285 } 283 }
286 284
287 void completeException(Object exception, [Object stackTrace]) { 285 void completeException(Object exception, [Object stackTrace]) {
288 _futureImpl._setException(exception, stackTrace); 286 _futureImpl._setException(exception, stackTrace);
289 } 287 }
290 } 288 }
291 289
OLDNEW
« no previous file with comments | « sdk/lib/core/future.dart ('k') | sdk/lib/core/hashable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698