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

Unified Diff: sdk/lib/async/async_error.dart

Issue 25354003: Redo StreamTransformers so they work with Stack traces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/async/async.dart ('k') | sdk/lib/async/async_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/async_error.dart
diff --git a/sdk/lib/async/async_error.dart b/sdk/lib/async/async_error.dart
index d5732165b2b1f026de27c4633b9de972d35c5c69..d28c45befa693e30883cd5dbaec6190c59497d2c 100644
--- a/sdk/lib/async/async_error.dart
+++ b/sdk/lib/async/async_error.dart
@@ -29,7 +29,7 @@ Function _registerErrorHandler(Function errorHandler, Zone zone) {
}
/**
- * *This is an experimental API.*
+ * *DEPRECATED*. Use explicit stack trace arguments instead.
*
* Get the [StackTrace] attached to [o].
*
@@ -38,6 +38,7 @@ Function _registerErrorHandler(Function errorHandler, Zone zone) {
*
* Returns [null] if no [StackTrace] was attached.
*/
+@deprecated
getAttachedStackTrace(o) {
if (o == null || o is bool || o is num || o is String) return null;
return _stackTraceExpando[o];
« no previous file with comments | « sdk/lib/async/async.dart ('k') | sdk/lib/async/async_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698