()
| 13578 | return this._source_view; |
| 13579 | } |
| 13580 | file_line_col() { |
| 13581 | if (!this._source_view || this.source().filename() === null) { |
| 13582 | return null; |
| 13583 | } |
| 13584 | const lineno = this._source_view.lineno_for_offset(this._start); |
| 13585 | const col_offset = this._start - this._source_view.offset_for_line(lineno); |
| 13586 | return [this._source_view.filename(), this._source_view.lineno_to_source_lineno(lineno), col_offset]; |
| 13587 | } |
| 13588 | start() { |
| 13589 | return this._start; |
| 13590 | } |
no test coverage detected