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

Unified Diff: sdk/lib/_internal/lib/core_patch.dart

Issue 18529003: Add stackTrace to Error object. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 7 years, 6 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
Index: sdk/lib/_internal/lib/core_patch.dart
diff --git a/sdk/lib/_internal/lib/core_patch.dart b/sdk/lib/_internal/lib/core_patch.dart
index 08d4be45bf2cb36df90b64646fc64caaba42cc17..ab9539040338ac06b371c767095d50f34c05fe7c 100644
--- a/sdk/lib/_internal/lib/core_patch.dart
+++ b/sdk/lib/_internal/lib/core_patch.dart
@@ -114,6 +114,9 @@ patch class Error {
patch static String _objectToString(Object object) {
return Primitives.objectToString(object);
}
+
+ // TODO(XYZ): implement stackTrace in error object.
Lasse Reichstein Nielsen 2013/07/03 13:06:13 XYZ->number.
floitsch 2013/07/03 14:50:20 Done.
+ patch StackTrace get stackTrace => null;
}

Powered by Google App Engine
This is Rietveld 408576698