Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kbilsted/1fileparsers
Various implementations of minimal parsers
https://github.com/kbilsted/1fileparsers
Last synced: 1 day ago
JSON representation
Various implementations of minimal parsers
- Host: GitHub
- URL: https://github.com/kbilsted/1fileparsers
- Owner: kbilsted
- License: apache-2.0
- Created: 2015-01-17T20:54:59.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-26T19:03:03.000Z (over 9 years ago)
- Last Synced: 2023-05-31T05:50:17.452Z (over 1 year ago)
- Language: C#
- Size: 270 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 1FileParsers
Various implementations of minimal parsers, each implemented in a single file.The challenge is to create a parser in one file.
The parser must support
* The gramar of the parser must be configurable, e.g. using the BNF-notation.
* The output of the parser must be structured, i.e. some for of an AST
* The more features the better
* The fewer lines the better
* Implementation language is your choiceSubmissions are done using pull-requests with a folder prefixed with the implementation language followed by the name of your parser. Eg. "cs_miniparser" for "C#" and "miniparser"