(name)
| 1016 | } |
| 1017 | |
| 1018 | getLineAndColumn(name) { |
| 1019 | const re = /:([0-9]+):([0-9]+)$/; |
| 1020 | const array = re.exec(name); |
| 1021 | if (!array) { |
| 1022 | return null; |
| 1023 | } |
| 1024 | return { line: array[1], column: array[2] }; |
| 1025 | } |
| 1026 | |
| 1027 | hasSourceMap() { |
| 1028 | return this.sourceMap != null; |
no test coverage detected