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

Unified Diff: packages/stack_trace/README.md

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/stack_trace/CHANGELOG.md ('k') | packages/stack_trace/analysis_options.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/stack_trace/README.md
diff --git a/packages/stack_trace/README.md b/packages/stack_trace/README.md
index fe85adbae547d5b16303e7f665a2dbfb685da3ee..3f08374249ed0d63f74338a0777312bcb34ddcf6 100644
--- a/packages/stack_trace/README.md
+++ b/packages/stack_trace/README.md
@@ -7,7 +7,7 @@ the native [StackTrace] implementation.
using `Trace.current`. Native [StackTrace]s can also be directly converted to
human-readable strings using `Trace.format`.
-[StackTrace]: http://api.dartlang.org/docs/releases/latest/dart_core/StackTrace.html
+[StackTrace]: https://api.dartlang.org/stable/dart-core/StackTrace-class.html
Here's an example native stack trace from debugging this library:
@@ -28,20 +28,20 @@ Here's an example native stack trace from debugging this library:
and its human-readable representation:
- dart:core-patch Object.noSuchMethod
+ dart:core-patch 1884:25 Object.noSuchMethod
pkg/stack_trace/lib/src/trace.dart 47:21 Trace.terse.<fn>
- dart:collection IterableMixinWorkaround.reduce
- dart:core-patch List.reduce
+ dart:collection 29:29 IterableMixinWorkaround.reduce
+ dart:core-patch 1247:42 List.reduce
pkg/stack_trace/lib/src/trace.dart 40:35 Trace.terse
pkg/stack_trace/lib/stack_trace.dart 24:28 format
test.dart 21:29 main.<fn>
- dart:async _CatchErrorFuture._sendError
- dart:async _FutureImpl._setErrorWithoutAsyncTrace
- dart:async _FutureImpl._setError
- dart:async _ThenFuture._sendValue
- dart:async _FutureImpl._handleValue.<fn>
- dart:async Timer.run.<fn>
- dart:async-patch Timer.Timer.<fn>
+ dart:async 525:24 _CatchErrorFuture._sendError
+ dart:async 393:26 _FutureImpl._setErrorWithoutAsyncTrace
+ dart:async 378:31 _FutureImpl._setError
+ dart:async 490:16 _ThenFuture._sendValue
+ dart:async 349:28 _FutureImpl._handleValue.<fn>
+ dart:async 2402:21 Timer.run.<fn>
+ dart:async-patch 15:15 Timer.Timer.<fn>
You can further clean up the stack trace using `Trace.terse`. This folds
together multiple stack frames from the Dart core libraries, so that only the
@@ -202,4 +202,4 @@ this:
That's a lot easier to understand!
-[Zone]: https://api.dartlang.org/apidocs/channels/stable/#dart-async.Zone
+[Zone]: https://api.dartlang.org/stable/dart-async/Zone-class.html
« no previous file with comments | « packages/stack_trace/CHANGELOG.md ('k') | packages/stack_trace/analysis_options.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698