Fixed another bug
This commit is contained in:
parent
8492a39b09
commit
0dce698fc3
|
@ -5200,7 +5200,11 @@ q{(int a, ...)
|
|||
auto ident = expect(TokenType.identifier);
|
||||
if (ident is null) return null;
|
||||
node.identifier = *ident;
|
||||
if ((node.templateArgumentList = parseTemplateArgumentList()) is null) return null;
|
||||
if (currentIs(TokenType.comma))
|
||||
{
|
||||
advance();
|
||||
if ((node.templateArgumentList = parseTemplateArgumentList()) is null) return null;
|
||||
}
|
||||
if (expect(TokenType.rParen) is null) return null;
|
||||
return node;
|
||||
}
|
||||
|
|
|
@ -8,8 +8,5 @@ for file in /usr/include/d/std/*.d; do
|
|||
./tester $file > $outFile
|
||||
done
|
||||
echo
|
||||
echo "Good files:"
|
||||
grep -l "Parsing finished with 0 errors" runs/*.txt | sed -e "s/runs\///" -e "s/.txt//"
|
||||
echo
|
||||
echo "Bad files:"
|
||||
grep -L "Parsing finished with 0 errors" runs/*.txt | sed -e "s/runs\///" -e "s/.txt//"
|
||||
grep -l "Parsing finished with 0 errors" runs/*.txt | sed -e "s/runs\//Pass /" -e "s/.txt//"
|
||||
grep -L "Parsing finished with 0 errors" runs/*.txt | sed -e "s/runs\//Fail /" -e "s/.txt//"
|
||||
|
|
Loading…
Reference in New Issue