(line)
| 5316 | var shouldIgnore = function() { return false; }; |
| 5317 | var parseLineInfoRegex = /[\/<\(]([^:\/]+):(\d+):(?:\d+)\)?\s*$/; |
| 5318 | function parseLineInfo(line) { |
| 5319 | var matches = line.match(parseLineInfoRegex); |
| 5320 | if (matches) { |
| 5321 | return { |
| 5322 | fileName: matches[1], |
| 5323 | line: parseInt(matches[2], 10) |
| 5324 | }; |
| 5325 | } |
| 5326 | } |
| 5327 | |
| 5328 | function setBounds(firstLineError, lastLineError) { |
| 5329 | if (!longStackTracesIsSupported()) return; |