(offset: number)
| 58 | } |
| 59 | |
| 60 | signalOrigin(offset: number): SignalOrigin { |
| 61 | const [line, column] = this.getLinecol(offset); |
| 62 | return { |
| 63 | url: this.url, |
| 64 | source: this.source, |
| 65 | offset: offset, |
| 66 | line, |
| 67 | column, |
| 68 | around: this.sourceAround(line, column), |
| 69 | }; |
| 70 | } |
| 71 | |
| 72 | chalkGutter(s: string): string { |
| 73 | return terminal.renderSpan({ content: s, weight: 'thin' }); |
no test coverage detected