mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
9284de6ed8
compiler front-end from a Labelled BNF grammar. It was originally written to generate Haskell, but starting from Version 2.0, it can also be used for generating Java, C++, and C. Given a Labelled BNF grammar the tool produces: * an abstract syntax as a Haskell/C++/C module or Java directory * a case skeleton for the abstract syntax in the same language * an Alex, JLex, or Flex lexer generator file * a Happy, CUP, or Bison parser generator file * a pretty-printer as a Haskell/Java/C++/C module * a Latex file containing a readable specification of the language WWW: http://www.cs.chalmers.se/~markus/BNFC/ PR: ports/109038 Submitted by: Kai Wang <kaiw27 at gmail.com>
16 lines
688 B
Plaintext
16 lines
688 B
Plaintext
The BNF Converter is a compiler construction tool generating a
|
|
compiler front-end from a Labelled BNF grammar. It was originally
|
|
written to generate Haskell, but starting from Version 2.0, it can
|
|
also be used for generating Java, C++, and C.
|
|
|
|
Given a Labelled BNF grammar the tool produces:
|
|
|
|
* an abstract syntax as a Haskell/C++/C module or Java directory
|
|
* a case skeleton for the abstract syntax in the same language
|
|
* an Alex, JLex, or Flex lexer generator file
|
|
* a Happy, CUP, or Bison parser generator file
|
|
* a pretty-printer as a Haskell/Java/C++/C module
|
|
* a Latex file containing a readable specification of the language
|
|
|
|
WWW: http://www.cs.chalmers.se/~markus/BNFC/
|