parser-combinator
Version:
Parser combinators
18 lines (15 loc) • 311 B
JavaScript
/*
* Parsec
* https://github.com/d-plaindoux/parsec
*
* Copyright (c) 2016 Didier Plaindoux
* Licensed under the LGPL2 license.
*/
import genlex from './genlex';
import token from './token';
import tokenizer from './tokenizer';
export default {
genlex,
token,
tokenizer,
};