UNPKG

tscc-compiler

Version:

An LALR(1) compiler compiler written in Typescript

7 lines (6 loc) 166 B
import { JsccError } from '../util/E'; export class PatternException extends JsccError{ constructor(msg: string){ super(msg, 'PatternException'); } }