Trace.parseFirefox constructor

Trace.parseFirefox(String trace)

Parses a string representation of a Firefox stack trace.

Implementation

Trace.parseFirefox(String trace)
    : this(
          trace
              .trim()
              .split("\n")
              .where((line) => line.isNotEmpty && line != '[native code]')
              .map((line) => new Frame.parseFirefox(line)),
          original: trace);