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

Unified Diff: runtime/lib/errors_patch.dart

Issue 19579002: Revert "Introduce StackTraceOnThrowMixin." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | runtime/tests/vm/dart/isolate_mirror_local_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/errors_patch.dart
diff --git a/runtime/lib/errors_patch.dart b/runtime/lib/errors_patch.dart
index 701619001aaa7977f378e469a6db30451f06de47..f14a50441bbd4e42e92db26a9034712aaf8a3cb5 100644
--- a/runtime/lib/errors_patch.dart
+++ b/runtime/lib/errors_patch.dart
@@ -6,9 +6,7 @@ patch class Error {
/* patch */ static String _objectToString(Object object) {
return Object._toString(object);
}
-}
-patch class StackTraceOnThrow {
// TODO(11680): implement stackTrace on Error.
/* patch */ StackTrace get stackTrace => null;
}
@@ -175,7 +173,7 @@ patch class NoSuchMethodError {
}
}
-class _FiftyThreeBitOverflowError extends Error with StackTraceOnThrow {
+class _FiftyThreeBitOverflowError extends Error {
final Object _value;
_FiftyThreeBitOverflowError(this._value);
« no previous file with comments | « no previous file | runtime/tests/vm/dart/isolate_mirror_local_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698