summaryrefslogtreecommitdiff
path: root/examples
Commit message (Expand)AuthorAgeFilesLines
* doc: document YYEOF, YYUNDEF and YYerrorAkim Demaille2020-04-291-3/+3
* tests: beware of portability of readlineAkim Demaille2020-04-291-1/+2
* java: clean up the definition of token kindsAkim Demaille2020-04-282-2/+2
* error: rename the error token from YYERRCODE to YYerrorAkim Demaille2020-04-282-2/+2
* c: don't emit an error message when the scanner returns YYERRCODEAkim Demaille2020-04-263-16/+153
* examples: bistromathic: demonstrate error recoveryAkim Demaille2020-04-264-3/+21
* examples: bistromathic: when quitting, close the current lineAkim Demaille2020-04-263-26/+45
* examples: bistromathic: comment changesAkim Demaille2020-04-261-1/+8
* style: minor fixesAkim Demaille2020-04-251-1/+0
* examples: bistromathic: shorten token descriptionAkim Demaille2020-04-242-8/+6
* examples: bistromathic: demonstrate internationalizationAkim Demaille2020-04-245-38/+110
* examples: beware of readline on macOSAkim Demaille2020-04-182-1/+31
* examples: bistro: don't be lazy with switchAkim Demaille2020-04-141-30/+36
* doc: java: SymbolKind, etc.Akim Demaille2020-04-131-2/+2
* style: java: get closer to the Java styleAkim Demaille2020-04-132-143/+125
* doc: c++: document parser::contextAkim Demaille2020-04-131-1/+8
* d: put YYEMPTY in the TokenKindAkim Demaille2020-04-131-13/+11
* doc: promote yytoken_kind_t, not yytokentypeAkim Demaille2020-04-122-2/+2
* c: rename yyexpected_tokens as yypcontext_expected_tokensAkim Demaille2020-04-121-1/+1
* skeletons: make the eof token translatable if i18n is enabledAkim Demaille2020-04-121-2/+1
* skeletons: use "end of file" instead of "$end"Akim Demaille2020-04-123-5/+4
* java: prefer null to YYSYMBOL_YYEMPTYAkim Demaille2020-04-061-1/+1
* java: rename Lexer.yyreportSyntaxError as reportSyntaxErrorAkim Demaille2020-04-061-1/+1
* java: use getExpectedTokens, not yyexpectedTokensAkim Demaille2020-04-061-1/+1
* bison: use consistently "token kind", not "token type"Akim Demaille2020-04-051-1/+1
* doc: refer to the token kind rather than the token typeAkim Demaille2020-04-051-1/+1
* d, java: rename SymbolType as SymbolKindAkim Demaille2020-04-051-3/+3
* c, c++: rename yysymbol_type_t as yysymbol_kind_tAkim Demaille2020-04-051-2/+2
* Merge branch 'maint'Akim Demaille2020-04-051-1/+4
|\
| * examples: reccalc: really compile cleanly in C99Akim Demaille2020-04-051-4/+4
| * examples: reccalc: compile cleanly in C99Akim Demaille2020-04-021-0/+3
| * examples: use consistently the GFDL header for readmesAkim Demaille2020-03-066-53/+29
| * examples: be more robust to spaces in pathsAkim Demaille2020-01-211-14/+14
| * package: bump copyrights to 2020Akim Demaille2020-01-1034-34/+34
* | news: update the yyreport_syntax_error exampleAkim Demaille2020-04-051-1/+3
* | c: rename yyparse_context_t as yypcontext_tAkim Demaille2020-04-041-3/+3
* | java: use SymbolTypeAkim Demaille2020-04-041-3/+3
* | examples: java: use explicit token identifiersAkim Demaille2020-04-042-23/+50
* | bistromathic: use symbol numbers instead of YYTRANSLATEAkim Demaille2020-04-011-12/+14
* | yacc.c: use yysymbol_type_t instead of int for yytokenAkim Demaille2020-04-011-2/+2
* | java: move away from _ for internationalizationAkim Demaille2020-03-301-4/+5
* | examples: don't use yysyntax_error_argumentsAkim Demaille2020-03-282-21/+29
* | yacc.c: use negative numbers for errors in auxiliary functionsAkim Demaille2020-03-231-8/+13
* | yacc.c: yypstate_expected_tokensAkim Demaille2020-03-171-8/+7
* | examples: bistromathic: simplifyAkim Demaille2020-03-091-2/+0
* | yacc.c: push: undefine the pstate macros for the epilogueAkim Demaille2020-03-051-5/+0
* | yacc.c: push: initialize the pstate variables in pstate_newAkim Demaille2020-03-052-1/+11
* | bistromathic: properly compute the lcp, as expected by readlineAkim Demaille2020-03-042-2/+23
* | bistromathic: don't require spaces after operators for completionAkim Demaille2020-03-042-7/+11
* | bistromathic: check completionAkim Demaille2020-03-022-1/+18