https://github.com/jotatoledo/grammy-ts
Another LL(1) grammar analyzer.
https://github.com/jotatoledo/grammy-ts
context-free-grammar grammar typescript-library
Last synced: about 2 months ago
JSON representation
Another LL(1) grammar analyzer.
- Host: GitHub
- URL: https://github.com/jotatoledo/grammy-ts
- Owner: jotatoledo
- License: mit
- Created: 2019-08-23T21:40:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T07:59:17.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T07:55:43.438Z (over 2 years ago)
- Topics: context-free-grammar, grammar, typescript-library
- Language: TypeScript
- Homepage:
- Size: 834 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grammy-ts
[](https://circleci.com/gh/jotatoledo/grammy-ts/tree/master)
[](https://coveralls.io/github/jotatoledo/grammy-ts?branch=master)Another _LL(1) grammar_ analyzer.
## Install
```bash
npm i grammy-ts
```## API
TODO
## Linting
Now that tslint [is on its way to deprecation](https://medium.com/palantir/tslint-in-2019-1a144c2317a9), this project uses _eslint_ to lint `.ts` files as described in [@typescript-eslint docs](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#usage).
## Notation
**Capital letters** (A...) refer to _non-terminals_, **lower-case letters** (a...) refer to _grammar symbols_ (terminals or non-terminals) and **greek letters** (α...) refer to possibly _empty sequences of grammar symbols_.