| Index: lib/src/trace.dart
|
| diff --git a/lib/src/trace.dart b/lib/src/trace.dart
|
| index bf26c5175b02719a2953da7b4f93be893c4663bf..2fce0c7c3d51aa64dc5f1a1eef025d4586b642fd 100644
|
| --- a/lib/src/trace.dart
|
| +++ b/lib/src/trace.dart
|
| @@ -150,7 +150,9 @@ class Trace implements StackTrace {
|
|
|
| /// Parses a string representation of a JavaScriptCore stack trace.
|
| Trace.parseJSCore(String trace)
|
| - : this(trace.split("\n").map((line) => new Frame.parseV8(line)));
|
| + : this(trace.split("\n")
|
| + .where((line) => line != "\tat ")
|
| + .map((line) => new Frame.parseV8(line)));
|
|
|
| /// Parses a string representation of an Internet Explorer stack trace.
|
| ///
|
|
|