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

Unified Diff: pkg/unittest/lib/src/test_case.dart

Issue 22859009: Changes to how we handle fancy stacks: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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: pkg/unittest/lib/src/test_case.dart
===================================================================
--- pkg/unittest/lib/src/test_case.dart (revision 26163)
+++ pkg/unittest/lib/src/test_case.dart (working copy)
@@ -41,9 +41,9 @@
*/
String get result => _result;
- Trace _stackTrace;
+ var _stackTrace;
/** Stack trace associated with this test, or [null] if it succeeded. */
- Trace get stackTrace => _stackTrace;
+ get stackTrace => _stackTrace;
nweiz 2013/08/14 23:56:59 I don't like making this dynamically-typed. This w
gram 2013/08/15 22:36:43 Done.
/** The group (or groups) under which this test is running. */
final String currentGroup;

Powered by Google App Engine
This is Rietveld 408576698