mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
795 B
Plaintext
13 lines
795 B
Plaintext
Coco/R combines the functionality of the well-known UNIX tools lex and yacc,
|
|
to form an extremely easy to use compiler generator that generates recursive
|
|
descent parsers, their associated scanners, and (in some versions) a driver
|
|
program, from attributed grammars (written using EBNF syntax with attributes
|
|
and semantic actions) which conform to the restrictions imposed by LL(1)
|
|
parsing (rather than LALR parsing, as allowed by yacc). The user has to add
|
|
modules for symbol table handling, optimization, and code generation in
|
|
order to get a running compiler. Coco/R can also be used to construct other
|
|
syntax-based applications that have less of a "compiler" flavour.
|
|
|
|
Coco/R is available in Oberon, Modula-2, Pascal, Delphi, C, Java and C#
|
|
versions. This port only builds the C/C++ version.
|