Test token.prefix.
[bison/ericb.git] / data / README
blob94aad558ba1e880861f9c89e2ef90554b3d05397
1 -*- outline -*-
3 This directory contains Bison skeletons: the general shapes of the
4 different parser kinds, that are specialized for specific grammars by
5 the bison program.
7 Currently, there are only three supported skeletons:
9 - yacc.c
10   It used to be named bison.simple: it corresponds to C Yacc
11   compatible LALR(1) parsers.
13 - lalr1.cc
14   Produces a C++ parser class.  It is still very experimental, and not
15   yet supported.  Please, subscribe to bison-patches@gnu.org.
17 - glr.c
18   A Generalized LR C parser based on Bison's LALR(1) tables.
20 These skeletons are the only ones supported by the Bison team.
21 Because the interface between skeletons and the bison program is not
22 finished, *we are not bound to it*.  In particular, Bison is not
23 mature enough for us to consider that ``foreign skeletons'' are
24 supported.
26 -----
28 Copyright (C) 2002 Free Software Foundation, Inc.
30 This file is part of GNU Bison.
32 This program is free software: you can redistribute it and/or modify
33 it under the terms of the GNU General Public License as published by
34 the Free Software Foundation, either version 3 of the License, or
35 (at your option) any later version.
37 This program is distributed in the hope that it will be useful,
38 but WITHOUT ANY WARRANTY; without even the implied warranty of
39 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40 GNU General Public License for more details.
42 You should have received a copy of the GNU General Public License
43 along with this program.  If not, see <http://www.gnu.org/licenses/>.