|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| m4sugar/ | | 03-May-2024 | - | 3,665 | 3,232 |
| xslt/ | | 03-May-2024 | - | 1,820 | 1,582 |
| Makefile.am | D | 03-May-2024 | 1.1 KiB | 31 | 13 |
| Makefile.in | D | 03-May-2024 | 56.4 KiB | 1,640 | 1,558 |
| README | D | 03-May-2024 | 2 KiB | 71 | 49 |
| bison.m4 | D | 03-May-2024 | 21.8 KiB | 611 | 527 |
| c++-skel.m4 | D | 03-May-2024 | 1.1 KiB | 27 | 20 |
| c++.m4 | D | 03-May-2024 | 7.2 KiB | 206 | 166 |
| c-like.m4 | D | 03-May-2024 | 1.6 KiB | 45 | 39 |
| c-skel.m4 | D | 03-May-2024 | 1.1 KiB | 27 | 20 |
| c.m4 | D | 03-May-2024 | 20.3 KiB | 715 | 587 |
| glr.c | D | 03-May-2024 | 81.6 KiB | 2,590 | 2,001 |
| glr.cc | D | 03-May-2024 | 10.5 KiB | 347 | 259 |
| java-skel.m4 | D | 03-May-2024 | 1.1 KiB | 27 | 20 |
| java.m4 | D | 03-May-2024 | 8 KiB | 305 | 227 |
| lalr1.cc | D | 03-May-2024 | 33.8 KiB | 1,144 | 735 |
| lalr1.java | D | 03-May-2024 | 28.8 KiB | 928 | 560 |
| location.cc | D | 03-May-2024 | 7.7 KiB | 300 | 206 |
| stack.hh | D | 03-May-2024 | 2.5 KiB | 122 | 93 |
| yacc.c | D | 03-May-2024 | 64.8 KiB | 2,066 | 1,457 |
README
1-*- outline -*-
2
3This directory contains data needed by Bison.
4
5* Skeletons
6Bison skeletons: the general shapes of the different parser kinds,
7that are specialized for specific grammars by the bison program.
8
9Currently, the supported skeletons are:
10
11- yacc.c
12 It used to be named bison.simple: it corresponds to C Yacc
13 compatible LALR(1) parsers.
14
15- lalr1.cc
16 Produces a C++ parser class.
17
18- lalr1.java
19 Produces a Java parser class.
20
21- glr.c
22 A Generalized LR C parser based on Bison's LALR(1) tables.
23
24- glr.cc
25 A Generalized LR C++ parser. Actually a C++ wrapper around glr.c.
26
27These skeletons are the only ones supported by the Bison team.
28Because the interface between skeletons and the bison program is not
29finished, *we are not bound to it*. In particular, Bison is not
30mature enough for us to consider that ``foreign skeletons'' are
31supported.
32
33* m4sugar
34This directory contains M4sugar, sort of an extended library for M4,
35which is used by Bison to instantiate the skeletons.
36
37* xslt
38This directory contains XSLT programs that transform Bison's XML output
39into various formats.
40
41- bison.xsl
42 A library of routines used by the other XSLT programs.
43
44- xml2dot.xsl
45 Conversion into GraphViz's dot format.
46
47- xml2text.xsl
48 Conversion into text.
49
50- xml2xhtml.xsl
51 Conversion into XHTML.
52
53-----
54
55Copyright (C) 2002, 2008-2012 Free Software Foundation, Inc.
56
57This file is part of GNU Bison.
58
59This program is free software: you can redistribute it and/or modify
60it under the terms of the GNU General Public License as published by
61the Free Software Foundation, either version 3 of the License, or
62(at your option) any later version.
63
64This program is distributed in the hope that it will be useful,
65but WITHOUT ANY WARRANTY; without even the implied warranty of
66MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
67GNU General Public License for more details.
68
69You should have received a copy of the GNU General Public License
70along with this program. If not, see <http://www.gnu.org/licenses/>.
71