UNPKG

parsergen-starter

Version:

A complete parser generator starter with PEG.js, optional Moo lexer, and VS Code integration

14 lines (12 loc) 248 B
export interface Position { line: number; column: number; offset: number; } export interface Location { start: Position; end: Position; } export interface ErrorFormatter { (message: string, location?: Location): string; }