| Index: lib/src/frame.dart
|
| diff --git a/lib/src/frame.dart b/lib/src/frame.dart
|
| index c06fd6034f45f898e745129904593356dd4ea6a3..9043d2baaacc38c25e09e53d58e8abfea77cc78a 100644
|
| --- a/lib/src/frame.dart
|
| +++ b/lib/src/frame.dart
|
| @@ -195,6 +195,9 @@ class Frame {
|
| }
|
| }
|
|
|
| + /// Parses a string representation of a JavaScriptCore stack trace.
|
| + factory Frame.parseJSCore(String frame) => new Frame.parseV8(frame);
|
| +
|
| /// Parses a string representation of an IE stack frame.
|
| ///
|
| /// IE10+ frames look just like V8 frames. Prior to IE10, stack traces can't
|
|
|