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

Unified Diff: packages/async/lib/src/result/error.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/async/lib/src/result/capture_transformer.dart ('k') | packages/async/lib/src/result/future.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/async/lib/src/result/error.dart
diff --git a/packages/async/lib/src/result/error.dart b/packages/async/lib/src/result/error.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b6d585937f520f736cd77d322945bb6796722649
--- /dev/null
+++ b/packages/async/lib/src/result/error.dart
@@ -0,0 +1,45 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'dart:async';
+
+import '../result.dart';
+import 'value.dart';
+
+/// A result representing a thrown error.
+class ErrorResult<T> implements Result<T> {
+ final error;
+ final StackTrace stackTrace;
+
+ bool get isValue => false;
+ bool get isError => true;
+ ValueResult<T> get asValue => null;
+ ErrorResult<T> get asError => this;
+
+ ErrorResult(this.error, this.stackTrace);
+
+ void complete(Completer completer) {
+ completer.completeError(error, stackTrace);
+ }
+
+ void addTo(EventSink sink) {
+ sink.addError(error, stackTrace);
+ }
+
+ Future<T> get asFuture => new Future.error(error, stackTrace);
+
+ /// Calls an error handler with the error and stacktrace.
+ ///
+ /// An async error handler function is either a function expecting two
+ /// arguments, which will be called with the error and the stack trace, or it
+ /// has to be a function expecting only one argument, which will be called
+ /// with only the error.
+ void handle(Function errorHandler) {
+ if (errorHandler is ZoneBinaryCallback) {
+ errorHandler(error, stackTrace);
+ } else {
+ errorHandler(error);
+ }
+ }
+}
« no previous file with comments | « packages/async/lib/src/result/capture_transformer.dart ('k') | packages/async/lib/src/result/future.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698