d: change the return value of yylex from int to TokenKind

* data/skeletons/lalr1.d: Change the return value.
* examples/d/calc/calc.y, examples/d/simple/calc.y: Adjust.
* tests/scanner.at: Adjust.
* tests/calc.at (_AT_DATA_CALC_Y(d)): New, extracted from...
(_AT_DATA_CALC_Y(c)): here.
The two grammars have been sufficiently different to be separated.
Still trying to be them together results in a maintenance burden.  For
the same reason, instead of specifying the results for D and for the
rest, compute the expected results with D from the regular case.
This commit is contained in:
Adela Vais
2020-09-26 07:12:42 +02:00
committed by Akim Demaille
parent de638df104
commit f296669c0f
6 changed files with 124 additions and 38 deletions

View File

@@ -114,7 +114,7 @@ class CalcLexer(R) : Lexer
return semanticVal_;
}
int yylex ()
TokenKind yylex ()
{
import std.uni : isWhite, isNumber;

View File

@@ -109,7 +109,7 @@ class CalcLexer(R) : Lexer
return semanticVal_;
}
int yylex ()
TokenKind yylex ()
{
import std.uni : isWhite, isNumber;