JavaCC: Difference between revisions
I had a good look at the linked reference, and it looks very much that the "benchmark" indeed cannot be cited here because it is troubled by serious methodical flaws. We cannot just cite arbitrary DZone articles, there must be a certain level of quality to them. |
m Version bump |
||
Line 5: | Line 5: | ||
| caption = |
| caption = |
||
| developer = Oracle |
| developer = Oracle |
||
| latest release version = 7.0. |
| latest release version = 7.0.10 |
||
| latest release date = {{Start date and age|2020| |
| latest release date = {{Start date and age|2020|11|23}}<ref>{{cite web|url=https://javacc.github.io/javacc/release-notes.html#javacc-7.0.10|title=MODIFICATIONS IN VERSION 7.0.10 |accessdate=2021-05-14}}</ref> |
||
| latest preview version = |
| latest preview version = |
||
| latest preview date = |
| latest preview date = |
Revision as of 11:51, 14 May 2021
Developer(s) | Oracle |
---|---|
Stable release | 7.0.10
/ November 23, 2020[1] |
Repository | github |
Platform | Java Virtual Machine |
Type | parser/scanner generator |
License | BSD |
Website | javacc |
JavaCC (Java Compiler Compiler) is an open-source parser generator and lexical analyzer generator written in the Java programming language.[2]
JavaCC is similar to yacc in that it generates a parser from a formal grammar written in EBNF notation. Unlike yacc, however, JavaCC generates top-down parsers. JavaCC can resolve choices based on the next k input tokens, and so can handle LL(k) grammars automatically; by use of "lookahead specifications", it can also resolve choices requiring unbounded look ahead. JavaCC also generates lexical analyzers in a fashion similar to lex. The tree builder that accompanies it, JJTree, constructs its trees from the bottom up.
JavaCC is licensed under a BSD license.
History
In 1996, Sun Microsystems released a parser generator called Jack. The developers responsible for Jack created their own company called Metamata and changed the Jack name to JavaCC. Metamata eventually became part of WebGain. After WebGain shut down its operations, JavaCC was moved to its current home.
Uses
Software built using JavaCC includes:
See also
References
- ^ "MODIFICATIONS IN VERSION 7.0.10". Retrieved 2021-05-14.
- ^ Enseling, Oliver (2000-12-29). "Build your own languages with JavaCC". JavaWorld. Retrieved 2020-01-02.