UNPKG

ll1-validator

Version:

A tool that checks if a given grammar is LL(1).

8 lines (7 loc) 260 B
class LexerError extends Error { } class ParserError extends Error { } class SemanticError extends Error { } class StartSymbolNotFound extends ParserError { } module.exports = Object.freeze({ LexerError, ParserError, StartSymbolNotFound, SemanticError });