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

Unified Diff: pkg/stack_trace/lib/src/lazy_trace.dart

Issue 27416002: Work around issue 14125 in stack_trace by adding a dummy setter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/stack_trace/lib/src/lazy_trace.dart
diff --git a/pkg/stack_trace/lib/src/lazy_trace.dart b/pkg/stack_trace/lib/src/lazy_trace.dart
index ae56b5fc3ae0239a591e7f1c62ac0b9733139936..7b0b251d91e531ed90d649f2a663ae5c8f393958 100644
--- a/pkg/stack_trace/lib/src/lazy_trace.dart
+++ b/pkg/stack_trace/lib/src/lazy_trace.dart
@@ -30,4 +30,7 @@ class LazyTrace implements Trace {
Trace foldFrames(bool predicate(frame)) =>
new LazyTrace(() => _trace.foldFrames(predicate));
String toString() => _trace.toString();
+
+ // Work around issue 14125.
+ set frames(_) => throw new UnimplementedError();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698