1 2 3 4 5 6 7 8 9 10 11 12 13
export default class DocumentLocation { public readonly line: number; public readonly char: number; constructor(line: number, char: number) { this.line = line; this.char = char; } public toString(): string { return `${this.line}:${this.char}`; } }