Sha256: d481f65b82190b3304d40060bf020adc4c19d9779014fd556e1b4217bdaf28cf
Contents?: true
Size: 350 Bytes
Versions: 40
Compression:
Stored size: 350 Bytes
Contents
export declare type SourceLocation = { line: number; column: number; }; export default class LinesAndColumns { private string; private offsets; constructor(string: string); locationForIndex(index: number): SourceLocation | null; indexForLocation(location: SourceLocation): number | null; private lengthOfLine(line); }
Version data entries
40 entries across 39 versions & 7 rubygems