| 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];
|
|
|