Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dehasi/recursive-descent-parser
Recursive descent parser
https://github.com/dehasi/recursive-descent-parser
Last synced: 15 days ago
JSON representation
Recursive descent parser
- Host: GitHub
- URL: https://github.com/dehasi/recursive-descent-parser
- Owner: dehasi
- Created: 2015-10-18T12:03:16.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-18T12:07:35.000Z (about 9 years ago)
- Last Synced: 2024-11-07T05:42:42.315Z (2 months ago)
- Language: Java
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recursive-descent-parser
Calculate is realised by recursive descent parser.
expression ::= term [«+» or «-» term] *
term ::= multiplier [«*» or «/» or «^» multiplier] *
multiplier ::= ((number | applyFunction(expression)
| (expression)) [«^» multiplier]*])
| +multiplier
| -multiplier