X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/166366b28f579dfb991f8f6fca323847bcc1eb65..72cd9a913f6d282c5e24990505c2c820bda2bf1b:/src/ielr.h diff --git a/src/ielr.h b/src/ielr.h index 27b3a445..7b223806 100644 --- a/src/ielr.h +++ b/src/ielr.h @@ -1,6 +1,6 @@ /* IELR main implementation. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2012 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -26,16 +26,16 @@ /** * \pre - * - \c ::states is of size \c ::nstates and defines an LALR(1) parser for - * the users's grammar. + * - \c ::states is of size \c ::nstates and defines an LR(0) parser + * for the users's grammar. * - \c ::ntokens is the number of tokens in the grammar. * \post * - \c ::states is of size \c ::nstates (which might be greater than * ::nstates \@pre) and defines the type of parser specified by * the value of the \c \%define variable \c lr.type. Its value can be: - * - \c "LALR". - * - \c "IELR". - * - \c "canonical LR". + * - \c "lalr". + * - \c "ielr". + * - \c "canonical-lr". */ void ielr (void);