Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | import * as ts from 'typescript' export type SourcePath = string export type SourceContent = string export class SourceCode { path: SourcePath content: SourceContent } export class UpdateOrigin { uid: string } export interface SrcPosition { line: number ch: number } export class SrcHighlight { public readonly messageText: string public readonly from: SrcPosition public readonly to: SrcPosition constructor(public readonly diagnostic: ts.Diagnostic) { this.messageText = diagnostic.messageText as string Iif (this.messageText['messageText']) { this.messageText = this.messageText['messageText'] } const from_location = diagnostic.file.getLineAndCharacterOfPosition( diagnostic.start, ) this.from = { line: from_location.line, ch: from_location.character, } const to_location = diagnostic.file.getLineAndCharacterOfPosition( diagnostic.start + diagnostic.length, ) this.to = { line: to_location.line, ch: to_location.character } } } |