doc: complete the table of symbols

* doc/bison.texi: Add YYEMPTY, YYEOF and YYUNDEF.
This commit is contained in:
Akim Demaille
2020-05-08 07:31:19 +02:00
parent 52bb6f0525
commit 54df196d49

View File

@@ -7666,11 +7666,11 @@ recovery.
In either case, the rest of the action is not executed. In either case, the rest of the action is not executed.
@end deffn @end deffn
@deffn {Macro} YYEMPTY @deffn {Value} YYEMPTY
Value stored in @code{yychar} when there is no lookahead token. Value stored in @code{yychar} when there is no lookahead token.
@end deffn @end deffn
@deffn {Macro} YYEOF @deffn {Value} YYEOF
Value stored in @code{yychar} when the lookahead is the end of the input Value stored in @code{yychar} when the lookahead is the end of the input
stream. stream.
@end deffn @end deffn
@@ -14700,6 +14700,14 @@ is given a nonzero value, the parser will output information on input
symbols and parser action. @xref{Tracing}. symbols and parser action. @xref{Tracing}.
@end deffn @end deffn
@deffn {Value} YYEMPTY
The pseudo token kind when there is no lookahead token.
@end deffn
@deffn {Value} YYEOF
The token kind denoting is the end of the input stream.
@end deffn
@deffn {Macro} yyerrok @deffn {Macro} yyerrok
Macro to cause parser to recover immediately to its normal mode Macro to cause parser to recover immediately to its normal mode
after a syntax error. @xref{Error Recovery}. after a syntax error. @xref{Error Recovery}.
@@ -14856,6 +14864,10 @@ should not be confused with the @emph{symbol kinds}, used internally by the
parser. parser.
@end deffn @end deffn
@deffn {Value} YYUNDEF
The token kind denoting an unknown token.
@end deffn
@node Glossary @node Glossary
@appendix Glossary @appendix Glossary