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

Side by Side Diff: sdk/lib/async/stream_pipe.dart

Issue 2974433002: Remaining private libs (Closed)
Patch Set: It's html_common Created 3 years, 5 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 | « sdk/lib/async/stream_impl.dart ('k') | sdk/lib/async/stream_transformers.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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of "async.dart"; 5 part of "dart:async";
6 6
7 /** Runs user code and takes actions depending on success or failure. */ 7 /** Runs user code and takes actions depending on success or failure. */
8 _runUserCode<T>( 8 _runUserCode<T>(
9 T userCode(), onSuccess(T value), onError(error, StackTrace stackTrace)) { 9 T userCode(), onSuccess(T value), onError(error, StackTrace stackTrace)) {
10 try { 10 try {
11 onSuccess(userCode()); 11 onSuccess(userCode());
12 } catch (e, s) { 12 } catch (e, s) {
13 AsyncError replacement = Zone.current.errorCallback(e, s); 13 AsyncError replacement = Zone.current.errorCallback(e, s);
14 if (replacement == null) { 14 if (replacement == null) {
15 onError(e, s); 15 onError(e, s);
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 _addErrorWithReplacement(sink, e, s); 490 _addErrorWithReplacement(sink, e, s);
491 return; 491 return;
492 } 492 }
493 if (!isEqual) { 493 if (!isEqual) {
494 sink._add(inputEvent); 494 sink._add(inputEvent);
495 subscription._value = inputEvent; 495 subscription._value = inputEvent;
496 } 496 }
497 } 497 }
498 } 498 }
499 } 499 }
OLDNEW
« no previous file with comments | « sdk/lib/async/stream_impl.dart ('k') | sdk/lib/async/stream_transformers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698