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

Unified Diff: lib/src/lazy_trace.dart

Issue 992703002: Fix type mismatch (Closed) Base URL: https://github.com/dart-lang/stack_trace.git@master
Patch Set: Created 5 years, 9 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: lib/src/lazy_trace.dart
diff --git a/lib/src/lazy_trace.dart b/lib/src/lazy_trace.dart
index 21bb67ffad08d67f428e0b0c06f6498e4aceec38..6bfe51c73a328ac0db903c56b25ec3f5ff45b59d 100644
--- a/lib/src/lazy_trace.dart
+++ b/lib/src/lazy_trace.dart
@@ -27,7 +27,7 @@ class LazyTrace implements Trace {
List<Frame> get frames => _trace.frames;
StackTrace get vmTrace => _trace.vmTrace;
Trace get terse => new LazyTrace(() => _trace.terse);
- Trace foldFrames(bool predicate(frame), {bool terse: false}) =>
+ Trace foldFrames(bool predicate(Frame frame), {bool terse: false}) =>
new LazyTrace(() => _trace.foldFrames(predicate, terse: terse));
String toString() => _trace.toString();
« 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