├── .gitignore ├── .npmignore ├── Makefile ├── README.md ├── lex.l ├── lex.y ├── package.json └── tests ├── all-tests.js └── lex ├── ansic.jisonlex ├── bnf.jisonlex ├── bnf.lex.json ├── lex_grammar.jisonlex └── lex_grammar.lex.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lex.y 2 | lex.l 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/README.md -------------------------------------------------------------------------------- /lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/lex.l -------------------------------------------------------------------------------- /lex.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/lex.y -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/package.json -------------------------------------------------------------------------------- /tests/all-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/tests/all-tests.js -------------------------------------------------------------------------------- /tests/lex/ansic.jisonlex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/tests/lex/ansic.jisonlex -------------------------------------------------------------------------------- /tests/lex/bnf.jisonlex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/tests/lex/bnf.jisonlex -------------------------------------------------------------------------------- /tests/lex/bnf.lex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/tests/lex/bnf.lex.json -------------------------------------------------------------------------------- /tests/lex/lex_grammar.jisonlex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/tests/lex/lex_grammar.jisonlex -------------------------------------------------------------------------------- /tests/lex/lex_grammar.lex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaach/lex-parser/HEAD/tests/lex/lex_grammar.lex.json --------------------------------------------------------------------------------