Now able to parse about half of Phobos

This commit is contained in:
Hackerpilot 2013-07-02 21:39:14 -07:00
parent 153e7c3b8e
commit 7c744a07f6
4 changed files with 198 additions and 64 deletions

View File

@ -1862,9 +1862,9 @@ public:
/** */ Type type; /** */ Type type;
/** */ Token identifier; /** */ Token identifier;
/** */ Type colonType; /** */ Type colonType;
/** */ Expression colonExpression; /** */ AssignExpression colonExpression;
/** */ Type assignType; /** */ Type assignType;
/** */ Expression assignExpression; /** */ AssignExpression assignExpression;
} }
/// ///

View File

@ -75,10 +75,10 @@ version(development) import std.stdio;
import std.stdio; import std.stdio;
/** /**
* Params: * Params:
* tokens = the tokens parsed by std.d.lexer * tokens = the tokens parsed by std.d.lexer
* Returns: the parsed module * Returns: the parsed module
*/ */
Module parseModule(const(Token)[] tokens, string fileName) Module parseModule(const(Token)[] tokens, string fileName)
{ {
auto parser = new Parser(); auto parser = new Parser();
@ -86,7 +86,7 @@ Module parseModule(const(Token)[] tokens, string fileName)
parser.tokens = tokens; parser.tokens = tokens;
auto mod = parser.parseModule(); auto mod = parser.parseModule();
version (development) writeln("Parsing finished with ", parser.errorCount, version (development) writeln("Parsing finished with ", parser.errorCount,
" errors"); " errors and ", parser.warningCount, " warnings.");
return mod; return mod;
} }
@ -289,6 +289,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
ArrayInitializer parseArrayInitializer() ArrayInitializer parseArrayInitializer()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new ArrayInitializer; auto node = new ArrayInitializer;
if (expect(TokenType.lBracket) is null) return null; if (expect(TokenType.lBracket) is null) return null;
while (true) while (true)
@ -316,6 +317,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
ArrayLiteral parseArrayLiteral() ArrayLiteral parseArrayLiteral()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new ArrayLiteral; auto node = new ArrayLiteral;
if (expect(TokenType.lBracket) is null) return null; if (expect(TokenType.lBracket) is null) return null;
node.argumentList = parseArgumentList(); node.argumentList = parseArgumentList();
@ -332,6 +334,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
ArrayMemberInitialization parseArrayMemberInitialization() ArrayMemberInitialization parseArrayMemberInitialization()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new ArrayMemberInitialization; auto node = new ArrayMemberInitialization;
with (TokenType) switch (current.type) with (TokenType) switch (current.type)
{ {
@ -383,7 +386,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmAndExp parseAsmAndExp() AsmAndExp parseAsmAndExp()
{ {
auto node = new AsmAndExp; auto node = new AsmAndExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -398,7 +401,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmBrExp parseAsmBrExp() AsmBrExp parseAsmBrExp()
{ {
auto node = new AsmBrExp; auto node = new AsmBrExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -412,7 +415,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmEqualExp parseAsmEqualExp() AsmEqualExp parseAsmEqualExp()
{ {
auto node = new AsmEqualExp; auto node = new AsmEqualExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -426,7 +429,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmExp parseAsmExp() AsmExp parseAsmExp()
{ {
auto node = new AsmExp; auto node = new AsmExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -445,7 +448,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmInstruction parseAsmInstruction() AsmInstruction parseAsmInstruction()
{ {
auto node = new AsmInstruction; auto node = new AsmInstruction;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -459,7 +462,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmLogAndExp parseAsmLogAndExp() AsmLogAndExp parseAsmLogAndExp()
{ {
auto node = new AsmLogAndExp; auto node = new AsmLogAndExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -473,7 +476,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmLogOrExp parseAsmLogOrExp() AsmLogOrExp parseAsmLogOrExp()
{ {
auto node = new AsmLogOrExp; auto node = new AsmLogOrExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -487,7 +490,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmMulExp parseAsmMulExp() AsmMulExp parseAsmMulExp()
{ {
auto node = new AsmMulExp; auto node = new AsmMulExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -501,7 +504,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmOrExp parseAsmOrExp() AsmOrExp parseAsmOrExp()
{ {
auto node = new AsmOrExp; auto node = new AsmOrExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -519,7 +522,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmPrimaryExp parseAsmPrimaryExp() AsmPrimaryExp parseAsmPrimaryExp()
{ {
auto node = new AsmPrimaryExp; auto node = new AsmPrimaryExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -533,7 +536,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmRelExp parseAsmRelExp() AsmRelExp parseAsmRelExp()
{ {
auto node = new AsmRelExp; auto node = new AsmRelExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -547,7 +550,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmShiftExp parseAsmShiftExp() AsmShiftExp parseAsmShiftExp()
{ {
auto node = new AsmShiftExp; auto node = new AsmShiftExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -583,7 +586,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmTypePrefix parseAsmTypePrefix() AsmTypePrefix parseAsmTypePrefix()
{ {
auto node = new AsmTypePrefix; auto node = new AsmTypePrefix;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -603,7 +606,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmUnaExp parseAsmUnaExp() AsmUnaExp parseAsmUnaExp()
{ {
auto node = new AsmUnaExp; auto node = new AsmUnaExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -617,7 +620,7 @@ alias core.sys.posix.stdio.fileno fileno;
AsmXorExp parseAsmXorExp() AsmXorExp parseAsmXorExp()
{ {
auto node = new AsmXorExp; auto node = new AsmXorExp;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -630,6 +633,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
AssertExpression parseAssertExpression() AssertExpression parseAssertExpression()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new AssertExpression; auto node = new AssertExpression;
expect(TokenType.assert_); expect(TokenType.assert_);
if (expect(TokenType.lParen) is null) return null; if (expect(TokenType.lParen) is null) return null;
@ -693,6 +697,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
AssocArrayLiteral parseAssocArrayLiteral() AssocArrayLiteral parseAssocArrayLiteral()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new AssocArrayLiteral; auto node = new AssocArrayLiteral;
if (expect(TokenType.lBracket) is null) return null; if (expect(TokenType.lBracket) is null) return null;
node.keyValuePairs = parseKeyValuePairs(); node.keyValuePairs = parseKeyValuePairs();
@ -709,6 +714,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
AtAttribute parseAtAttribute() AtAttribute parseAtAttribute()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new AtAttribute; auto node = new AtAttribute;
if (expect(TokenType.at) is null) return null; if (expect(TokenType.at) is null) return null;
with (TokenType) switch (current.type) with (TokenType) switch (current.type)
@ -879,6 +885,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
BlockStatement parseBlockStatement() BlockStatement parseBlockStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new BlockStatement(); auto node = new BlockStatement();
if (expect(TokenType.lBrace) is null) return null; if (expect(TokenType.lBrace) is null) return null;
version (development) skipBraceContent(); version (development) skipBraceContent();
@ -897,6 +904,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
BodyStatement parseBodyStatement() BodyStatement parseBodyStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new BodyStatement; auto node = new BodyStatement;
expect(TokenType.body_); expect(TokenType.body_);
node.blockStatement = parseBlockStatement(); node.blockStatement = parseBlockStatement();
@ -912,6 +920,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
BreakStatement parseBreakStatement() BreakStatement parseBreakStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
expect(TokenType.break_); expect(TokenType.break_);
auto node = new BreakStatement; auto node = new BreakStatement;
switch (current.type) switch (current.type)
@ -939,6 +948,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
BaseClass parseBaseClass() BaseClass parseBaseClass()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new BaseClass; auto node = new BaseClass;
if (currentIs(TokenType.typeof_)) if (currentIs(TokenType.typeof_))
{ {
@ -958,6 +968,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
BaseClassList parseBaseClassList() BaseClassList parseBaseClassList()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
return parseCommaSeparatedRule!(BaseClassList, BaseClass)(); return parseCommaSeparatedRule!(BaseClassList, BaseClass)();
} }
@ -991,6 +1002,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
Token parseBasicType() Token parseBasicType()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
if (isBasicType(current.type)) if (isBasicType(current.type))
return advance(); return advance();
error("Basic type expected"); error("Basic type expected");
@ -1007,6 +1019,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
CaseRangeStatement parseCaseRangeStatement(AssignExpression low = null) CaseRangeStatement parseCaseRangeStatement(AssignExpression low = null)
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new CaseRangeStatement; auto node = new CaseRangeStatement;
if (low is null) if (low is null)
{ {
@ -1031,6 +1044,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
CaseStatement parseCaseStatement(ArgumentList argumentList = null) CaseStatement parseCaseStatement(ArgumentList argumentList = null)
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new CaseStatement; auto node = new CaseStatement;
if (argumentList !is null) if (argumentList !is null)
expect(TokenType.case_); expect(TokenType.case_);
@ -1049,6 +1063,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
CastExpression parseCastExpression() CastExpression parseCastExpression()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new CastExpression; auto node = new CastExpression;
expect(TokenType.cast_); expect(TokenType.cast_);
if (expect(TokenType.lParen) is null) return null; if (expect(TokenType.lParen) is null) return null;
@ -1094,6 +1109,7 @@ alias core.sys.posix.stdio.fileno fileno;
*/ */
CastQualifier parseCastQualifier() CastQualifier parseCastQualifier()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new CastQualifier; auto node = new CastQualifier;
switch (current.type) switch (current.type)
{ {
@ -1686,6 +1702,11 @@ class ClassFour(A, B) if (someTest()) : Super {}}c;
auto node = new Declaration; auto node = new Declaration;
with (TokenType) switch (current.type) with (TokenType) switch (current.type)
{ {
case semicolon:
// http://d.puremagic.com/issues/show_bug.cgi?id=4559
warn("Empty declaration");
advance();
break;
case lBrace: case lBrace:
advance(); advance();
while (moreTokens() && !currentIs(rBrace)) while (moreTokens() && !currentIs(rBrace))
@ -1718,22 +1739,24 @@ class ClassFour(A, B) if (someTest()) : Super {}}c;
goto storageClass; goto storageClass;
else else
{ {
trace("here");
auto b = setBookmark(); auto b = setBookmark();
advance(); advance();
assert (current.type == identifier);
if (peekIs(TokenType.assign)) if (peekIs(TokenType.assign))
{ {
trace("varDec"); trace("** 'enum identifier =' ");
goToBookmark(b); goToBookmark(b);
node.variableDeclaration = parseVariableDeclaration(); node.variableDeclaration = parseVariableDeclaration();
} }
else if (peekIsOneOf(TokenType.lBrace, TokenType.colon, TokenType.semicolon)) else if (peekIsOneOf(TokenType.lBrace, TokenType.colon, TokenType.semicolon))
{ {
trace("** 'enum identifier { : ;' ");
goToBookmark(b); goToBookmark(b);
node.enumDeclaration = parseEnumDeclaration(); node.enumDeclaration = parseEnumDeclaration();
} }
else else
{ {
trace("** something else");
goToBookmark(b); goToBookmark(b);
goto storageClass; goto storageClass;
} }
@ -1768,6 +1791,8 @@ class ClassFour(A, B) if (someTest()) : Super {}}c;
node.staticDestructor = parseStaticDestructor(); node.staticDestructor = parseStaticDestructor();
else if (startsWith(static_, if_)) else if (startsWith(static_, if_))
node.conditionalDeclaration = parseConditionalDeclaration(); node.conditionalDeclaration = parseConditionalDeclaration();
else if (startsWith(static_, assert_))
node.staticAssertDeclaration = parseStaticAssertDeclaration();
else else
node.attributedDeclaration = parseAttributedDeclaration(); node.attributedDeclaration = parseAttributedDeclaration();
break; break;
@ -1783,6 +1808,7 @@ class ClassFour(A, B) if (someTest()) : Super {}}c;
case unittest_: case unittest_:
node.unittest_ = parseUnittest(); node.unittest_ = parseUnittest();
break; break;
case typeof_:
case bool_: .. case wchar_: case bool_: .. case wchar_:
case identifier: case identifier:
type: type:
@ -1822,8 +1848,19 @@ class ClassFour(A, B) if (someTest()) : Super {}}c;
node.functionDeclaration = parseFunctionDeclaration(); node.functionDeclaration = parseFunctionDeclaration();
break; break;
case const_: case const_:
if (startsWith(const_, identifier, assign))
node.variableDeclaration = parseVariableDeclaration();
else
goto typeConstructor;
break;
case immutable_: case immutable_:
if (startsWith(immutable_, identifier, assign))
node.variableDeclaration = parseVariableDeclaration();
else
goto typeConstructor;
break;
case inout_: case inout_:
typeConstructor:
if (peekIs(TokenType.lParen)) if (peekIs(TokenType.lParen))
goto type; goto type;
else else
@ -2475,6 +2512,7 @@ body {} // six
*/ */
FunctionCallStatement parseFunctionCallStatement() FunctionCallStatement parseFunctionCallStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new FunctionCallStatement; auto node = new FunctionCallStatement;
node.functionCallExpression = parseFunctionCallExpression(); node.functionCallExpression = parseFunctionCallExpression();
if (expect(TokenType.semicolon) is null) return null; if (expect(TokenType.semicolon) is null) return null;
@ -2491,31 +2529,34 @@ body {} // six
*/ */
FunctionDeclaration parseFunctionDeclaration(Type type = null) FunctionDeclaration parseFunctionDeclaration(Type type = null)
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new FunctionDeclaration; auto node = new FunctionDeclaration;
while(moreTokens() && currentIsMemberFunctionAttribute()) while(moreTokens() && currentIsMemberFunctionAttribute())
node.memberFunctionAttributes ~= parseMemberFunctionAttribute(); node.memberFunctionAttributes ~= parseMemberFunctionAttribute();
switch (current.type) with (TokenType) switch (current.type)
{ {
case TokenType.auto_: case auto_:
advance(); advance();
node.hasAuto = true; node.hasAuto = true;
if (currentIs(TokenType.ref_)) if (currentIs(ref_))
{ {
node.hasRef = true; node.hasRef = true;
advance(); advance();
} }
break; break;
case TokenType.ref_: case ref_:
advance(); advance();
node.hasRef = true; node.hasRef = true;
if (currentIs(TokenType.auto_)) if (currentIs(auto_))
{ {
node.hasAuto = true; node.hasAuto = true;
advance(); advance();
break; break;
} }
else if (startsWith(identifier, lParen))
break;
else else
goto default; goto default;
default: default:
@ -3657,7 +3698,7 @@ invariant() foo();
Operands parseOperands() Operands parseOperands()
{ {
auto node = new Operands; auto node = new Operands;
assert (false); // TODO asm assert (false, "asm"); // TODO asm
return node; return node;
} }
@ -3964,6 +4005,7 @@ q{(int a, ...)
*/ */
PreIncDecExpression parsePreIncDecExpression() PreIncDecExpression parsePreIncDecExpression()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new PreIncDecExpression; auto node = new PreIncDecExpression;
if (currentIsOneOf(TokenType.increment, TokenType.decrement)) if (currentIsOneOf(TokenType.increment, TokenType.decrement))
advance(); advance();
@ -4107,6 +4149,7 @@ q{(int a, ...)
*/ */
Register parseRegister() Register parseRegister()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new Register; auto node = new Register;
auto ident = expect(TokenType.identifier); auto ident = expect(TokenType.identifier);
if (ident is null) return null; if (ident is null) return null;
@ -4164,6 +4207,7 @@ q{(int a, ...)
*/ */
ReturnStatement parseReturnStatement() ReturnStatement parseReturnStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new ReturnStatement; auto node = new ReturnStatement;
expect(TokenType.return_); expect(TokenType.return_);
if (tokens[index] != TokenType.semicolon) if (tokens[index] != TokenType.semicolon)
@ -4181,6 +4225,7 @@ q{(int a, ...)
*/ */
ScopeGuardStatement parseScopeGuardStatement() ScopeGuardStatement parseScopeGuardStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new ScopeGuardStatement; auto node = new ScopeGuardStatement;
expect(TokenType.scope_); expect(TokenType.scope_);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -4201,6 +4246,7 @@ q{(int a, ...)
*/ */
SharedStaticConstructor parseSharedStaticConstructor() SharedStaticConstructor parseSharedStaticConstructor()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SharedStaticConstructor; auto node = new SharedStaticConstructor;
expect(TokenType.shared_); expect(TokenType.shared_);
expect(TokenType.static_); expect(TokenType.static_);
@ -4220,6 +4266,7 @@ q{(int a, ...)
*/ */
SharedStaticDestructor parseSharedStaticDestructor() SharedStaticDestructor parseSharedStaticDestructor()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SharedStaticDestructor; auto node = new SharedStaticDestructor;
expect(TokenType.shared_); expect(TokenType.shared_);
expect(TokenType.static_); expect(TokenType.static_);
@ -4256,6 +4303,7 @@ q{(int a, ...)
*/ */
SingleImport parseSingleImport() SingleImport parseSingleImport()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SingleImport; auto node = new SingleImport;
if (startsWith(TokenType.identifier, TokenType.assign)) if (startsWith(TokenType.identifier, TokenType.assign))
{ {
@ -4270,18 +4318,23 @@ q{(int a, ...)
* Parses a SliceExpression * Parses a SliceExpression
* *
* $(GRAMMAR $(RULEDEF sliceExpression): * $(GRAMMAR $(RULEDEF sliceExpression):
* $(RULE unaryExpression) $(LITERAL '[') $(RULE assignExpression) $(LITERAL '..') $(RULE assignExpression) $(LITERAL ']') * $(RULE unaryExpression) $(LITERAL '[') $(RULE assignExpression) $(LITERAL '..') $(RULE assignExpression) $(LITERAL ']')
* | $(RULE unaryExpression) $(LITERAL '[') $(LITERAL ']')
* ;) * ;)
*/ */
SliceExpression parseSliceExpression(UnaryExpression unary = null) SliceExpression parseSliceExpression(UnaryExpression unary = null)
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SliceExpression; auto node = new SliceExpression;
node.unaryExpression = unary is null ? parseUnaryExpression() : unary; node.unaryExpression = unary is null ? parseUnaryExpression() : unary;
expect(TokenType.lBracket); if (expect(TokenType.lBracket) is null) return null;
node.lower = parseAssignExpression(); if (!currentIs(TokenType.rBracket))
expect(TokenType.slice); {
node.upper = parseAssignExpression(); node.lower = parseAssignExpression();
expect(TokenType.rBracket); expect(TokenType.slice);
node.upper = parseAssignExpression();
}
if (expect(TokenType.rBracket) is null) return null;
return node; return node;
} }
@ -4297,6 +4350,7 @@ q{(int a, ...)
*/ */
Statement parseStatement() Statement parseStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new Statement; auto node = new Statement;
switch (current.type) switch (current.type)
{ {
@ -4326,6 +4380,7 @@ q{(int a, ...)
*/ */
StaticAssertDeclaration parseStaticAssertDeclaration() StaticAssertDeclaration parseStaticAssertDeclaration()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StaticAssertDeclaration; auto node = new StaticAssertDeclaration;
node.staticAssertStatement = parseStaticAssertStatement(); node.staticAssertStatement = parseStaticAssertStatement();
if (node.staticAssertStatement is null) return null; if (node.staticAssertStatement is null) return null;
@ -4342,6 +4397,7 @@ q{(int a, ...)
*/ */
StaticAssertStatement parseStaticAssertStatement() StaticAssertStatement parseStaticAssertStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StaticAssertStatement; auto node = new StaticAssertStatement;
if (expect(TokenType.static_) is null) return null; if (expect(TokenType.static_) is null) return null;
node.assertExpression = parseAssertExpression(); node.assertExpression = parseAssertExpression();
@ -4359,6 +4415,7 @@ q{(int a, ...)
*/ */
StaticConstructor parseStaticConstructor() StaticConstructor parseStaticConstructor()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StaticConstructor; auto node = new StaticConstructor;
expect(TokenType.static_); expect(TokenType.static_);
expect(TokenType.this_); expect(TokenType.this_);
@ -4377,6 +4434,7 @@ q{(int a, ...)
*/ */
StaticDestructor parseStaticDestructor() StaticDestructor parseStaticDestructor()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StaticDestructor; auto node = new StaticDestructor;
expect(TokenType.static_); expect(TokenType.static_);
expect(TokenType.tilde); expect(TokenType.tilde);
@ -4396,6 +4454,7 @@ q{(int a, ...)
*/ */
StaticIfCondition parseStaticIfCondition() StaticIfCondition parseStaticIfCondition()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StaticIfCondition; auto node = new StaticIfCondition;
expect(TokenType.static_); expect(TokenType.static_);
expect(TokenType.if_); expect(TokenType.if_);
@ -4470,6 +4529,7 @@ q{(int a, ...)
*/ */
StructBody parseStructBody() StructBody parseStructBody()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StructBody; auto node = new StructBody;
expect(TokenType.lBrace); expect(TokenType.lBrace);
while (!currentIs(TokenType.rBrace) && moreTokens()) while (!currentIs(TokenType.rBrace) && moreTokens())
@ -4489,6 +4549,7 @@ q{(int a, ...)
*/ */
StructBodyItem parseStructBodyItem() StructBodyItem parseStructBodyItem()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StructBodyItem; auto node = new StructBodyItem;
if (currentIs(TokenType.invariant_)) if (currentIs(TokenType.invariant_))
node.invariant_ = parseInvariant(); node.invariant_ = parseInvariant();
@ -4508,6 +4569,7 @@ q{(int a, ...)
*/ */
StructDeclaration parseStructDeclaration() StructDeclaration parseStructDeclaration()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StructDeclaration; auto node = new StructDeclaration;
expect(TokenType.struct_); expect(TokenType.struct_);
auto ident = expect(TokenType.identifier); auto ident = expect(TokenType.identifier);
@ -4543,6 +4605,7 @@ q{(int a, ...)
*/ */
StructInitializer parseStructInitializer() StructInitializer parseStructInitializer()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StructInitializer; auto node = new StructInitializer;
expect(TokenType.lBrace); expect(TokenType.lBrace);
node.structMemberInitializers = parseStructMemberInitializers(); node.structMemberInitializers = parseStructMemberInitializers();
@ -4559,6 +4622,7 @@ q{(int a, ...)
*/ */
StructMemberInitializer parseStructMemberInitializer() StructMemberInitializer parseStructMemberInitializer()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StructMemberInitializer; auto node = new StructMemberInitializer;
if (startsWith(TokenType.identifier, TokenType.colon)) if (startsWith(TokenType.identifier, TokenType.colon))
{ {
@ -4578,6 +4642,7 @@ q{(int a, ...)
*/ */
StructMemberInitializers parseStructMemberInitializers() StructMemberInitializers parseStructMemberInitializers()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new StructMemberInitializers; auto node = new StructMemberInitializers;
do do
{ {
@ -4605,6 +4670,7 @@ q{(int a, ...)
*/ */
SwitchBody parseSwitchBody() SwitchBody parseSwitchBody()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SwitchBody; auto node = new SwitchBody;
expect(TokenType.lBrace); expect(TokenType.lBrace);
while (moreTokens() && tokens[index] != TokenType.rBrace) while (moreTokens() && tokens[index] != TokenType.rBrace)
@ -4622,6 +4688,7 @@ q{(int a, ...)
*/ */
SwitchStatement parseSwitchStatement() SwitchStatement parseSwitchStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SwitchStatement; auto node = new SwitchStatement;
expect(TokenType.switch_); expect(TokenType.switch_);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -4640,6 +4707,7 @@ q{(int a, ...)
*/ */
Symbol parseSymbol() Symbol parseSymbol()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new Symbol; auto node = new Symbol;
if (currentIs(TokenType.dot)) if (currentIs(TokenType.dot))
{ {
@ -4659,6 +4727,7 @@ q{(int a, ...)
*/ */
SynchronizedStatement parseSynchronizedStatement() SynchronizedStatement parseSynchronizedStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new SynchronizedStatement; auto node = new SynchronizedStatement;
expect(TokenType.synchronized_); expect(TokenType.synchronized_);
if (tokens[index] == TokenType.lParen) if (tokens[index] == TokenType.lParen)
@ -4675,17 +4744,18 @@ q{(int a, ...)
* Parses a TemplateAliasParameter * Parses a TemplateAliasParameter
* *
* $(GRAMMAR $(RULEDEF templateAliasParameter): * $(GRAMMAR $(RULEDEF templateAliasParameter):
* $(LITERAL 'alias') $(RULE type)? $(LITERAL Identifier) ($(LITERAL ':') ($(RULE type) | $(RULE expression)))? ($(LITERAL '=') ($(RULE type) | $(RULE expression)))? * $(LITERAL 'alias') $(RULE type)? $(LITERAL Identifier) ($(LITERAL ':') ($(RULE type) | $(RULE assignExpression)))? ($(LITERAL '=') ($(RULE type) | $(RULE assignExpression)))?
* ;) * ;)
*/ */
TemplateAliasParameter parseTemplateAliasParameter() TemplateAliasParameter parseTemplateAliasParameter()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateAliasParameter; auto node = new TemplateAliasParameter;
expect(TokenType.alias_); expect(TokenType.alias_);
if (currentIs(TokenType.identifier) && peekIsOneOf(TokenType.comma, if (currentIs(TokenType.identifier))
TokenType.rParen))
{ {
node.identifier = advance(); if (peekIsOneOf(TokenType.comma, TokenType.rParen, TokenType.assign))
node.identifier = advance();
} }
else else
{ {
@ -4694,20 +4764,22 @@ q{(int a, ...)
if (ident is null) return null; if (ident is null) return null;
node.identifier = *ident; node.identifier = *ident;
} }
if (currentIs(TokenType.colon)) if (currentIs(TokenType.colon))
{ {
advance(); advance();
if (isType()) if (isType())
node.colonType = parseType(); node.colonType = parseType();
else else
node.colonExpression = parseExpression(); node.colonExpression = parseAssignExpression();
} }
if (currentIs(TokenType.assign)) if (currentIs(TokenType.assign))
{ {
advance();
if (isType()) if (isType())
node.assignType = parseType(); node.assignType = parseType();
else else
node.assignExpression = parseExpression(); node.assignExpression = parseAssignExpression();
} }
return node; return node;
} }
@ -4722,6 +4794,7 @@ q{(int a, ...)
*/ */
TemplateArgument parseTemplateArgument() TemplateArgument parseTemplateArgument()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateArgument; auto node = new TemplateArgument;
if (isType()) if (isType())
{ {
@ -4743,6 +4816,7 @@ q{(int a, ...)
*/ */
TemplateArgumentList parseTemplateArgumentList() TemplateArgumentList parseTemplateArgumentList()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
return parseCommaSeparatedRule!(TemplateArgumentList, TemplateArgument)(); return parseCommaSeparatedRule!(TemplateArgumentList, TemplateArgument)();
} }
@ -4755,6 +4829,7 @@ q{(int a, ...)
*/ */
TemplateArguments parseTemplateArguments() TemplateArguments parseTemplateArguments()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateArguments; auto node = new TemplateArguments;
expect(TokenType.not); expect(TokenType.not);
if (currentIs(TokenType.lParen)) if (currentIs(TokenType.lParen))
@ -4803,6 +4878,7 @@ q{(int a, ...)
*/ */
TemplateInstance parseTemplateInstance() TemplateInstance parseTemplateInstance()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateInstance; auto node = new TemplateInstance;
auto ident = expect(TokenType.identifier); auto ident = expect(TokenType.identifier);
if (ident is null) return null; if (ident is null) return null;
@ -4822,6 +4898,7 @@ q{(int a, ...)
*/ */
TemplateMixinStatement parseTemplateMixinStatement() TemplateMixinStatement parseTemplateMixinStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateMixinStatement; auto node = new TemplateMixinStatement;
expect(TokenType.mixin_); expect(TokenType.mixin_);
node.mixinTemplateName = parseMixinTemplateName(); node.mixinTemplateName = parseMixinTemplateName();
@ -4880,6 +4957,7 @@ q{(int a, ...)
*/ */
TemplateParameterList parseTemplateParameterList() TemplateParameterList parseTemplateParameterList()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
return parseCommaSeparatedRule!(TemplateParameterList, TemplateParameter)(); return parseCommaSeparatedRule!(TemplateParameterList, TemplateParameter)();
} }
@ -4895,7 +4973,8 @@ q{(int a, ...)
mixin(traceEnterAndExit!(__FUNCTION__)); mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateParameters; auto node = new TemplateParameters;
if (expect(TokenType.lParen) is null) return null; if (expect(TokenType.lParen) is null) return null;
node.templateParameterList = parseTemplateParameterList(); if (!currentIs(TokenType.rParen))
node.templateParameterList = parseTemplateParameterList();
if (expect(TokenType.rParen) is null) return null; if (expect(TokenType.rParen) is null) return null;
return node; return node;
} }
@ -4928,6 +5007,7 @@ q{(int a, ...)
*/ */
TemplateSingleArgument parseTemplateSingleArgument() TemplateSingleArgument parseTemplateSingleArgument()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateSingleArgument; auto node = new TemplateSingleArgument;
with (TokenType) switch (current.type) with (TokenType) switch (current.type)
{ {
@ -4957,6 +5037,7 @@ q{(int a, ...)
*/ */
TemplateThisParameter parseTemplateThisParameter() TemplateThisParameter parseTemplateThisParameter()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateThisParameter; auto node = new TemplateThisParameter;
expect(TokenType.this_); expect(TokenType.this_);
node.templateTypeParameter = parseTemplateTypeParameter(); node.templateTypeParameter = parseTemplateTypeParameter();
@ -4978,7 +5059,7 @@ q{(int a, ...)
if (i is null) if (i is null)
return null; return null;
node.identifier = *i; node.identifier = *i;
expect(TokenType.vararg); if (expect(TokenType.vararg) is null) return null;
return node; return node;
} }
@ -4991,6 +5072,7 @@ q{(int a, ...)
*/ */
TemplateTypeParameter parseTemplateTypeParameter() TemplateTypeParameter parseTemplateTypeParameter()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateTypeParameter; auto node = new TemplateTypeParameter;
auto ident = expect(TokenType.identifier); auto ident = expect(TokenType.identifier);
if (ident is null) return null; if (ident is null) return null;
@ -5017,6 +5099,7 @@ q{(int a, ...)
*/ */
TemplateValueParameter parseTemplateValueParameter() TemplateValueParameter parseTemplateValueParameter()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateValueParameter; auto node = new TemplateValueParameter;
if ((node.type = parseType()) is null) return null; if ((node.type = parseType()) is null) return null;
auto ident = expect(TokenType.identifier); auto ident = expect(TokenType.identifier);
@ -5044,6 +5127,7 @@ q{(int a, ...)
*/ */
TemplateValueParameterDefault parseTemplateValueParameterDefault() TemplateValueParameterDefault parseTemplateValueParameterDefault()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TemplateValueParameterDefault; auto node = new TemplateValueParameterDefault;
expect(TokenType.assign); expect(TokenType.assign);
with (TokenType) switch (current.type) with (TokenType) switch (current.type)
@ -5093,6 +5177,7 @@ q{(int a, ...)
*/ */
ThrowStatement parseThrowStatement() ThrowStatement parseThrowStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new ThrowStatement; auto node = new ThrowStatement;
expect(TokenType.throw_); expect(TokenType.throw_);
node.expression = parseExpression(); node.expression = parseExpression();
@ -5109,6 +5194,7 @@ q{(int a, ...)
*/ */
TraitsExpression parseTraitsExpression() TraitsExpression parseTraitsExpression()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TraitsExpression; auto node = new TraitsExpression;
if (expect(TokenType.traits) is null) return null; if (expect(TokenType.traits) is null) return null;
if (expect(TokenType.lParen) is null) return null; if (expect(TokenType.lParen) is null) return null;
@ -5129,6 +5215,7 @@ q{(int a, ...)
*/ */
TryStatement parseTryStatement() TryStatement parseTryStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TryStatement; auto node = new TryStatement;
expect(TokenType.try_); expect(TokenType.try_);
node.statementNoCaseNoDefault = parseStatementNoCaseNoDefault(); node.statementNoCaseNoDefault = parseStatementNoCaseNoDefault();
@ -5273,6 +5360,7 @@ q{(int a, ...)
*/ */
TokenType[] parseTypeConstructors() TokenType[] parseTypeConstructors()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
TokenType[] r; TokenType[] r;
while (moreTokens()) while (moreTokens())
{ {
@ -5303,6 +5391,7 @@ q{(int a, ...)
* | $(LITERAL 'inout') * | $(LITERAL 'inout')
* | $(LITERAL 'shared') * | $(LITERAL 'shared')
* | $(LITERAL 'return') * | $(LITERAL 'return')
* | $(LITERAL 'typedef')
* | $(LITERAL '___parameters') * | $(LITERAL '___parameters')
* ;) * ;)
*/ */
@ -5314,18 +5403,15 @@ q{(int a, ...)
{ {
case struct_: case struct_:
case union_: case union_:
case class_:
case interface_: case interface_:
case enum_: case enum_:
case function_: case function_:
case delegate_: case delegate_:
case super_: case super_:
case return_: case return_:
case typedef_:
case parameters: case parameters:
if (peekIsOneOf(rParen, comma))
node.token = advance();
else
goto default;
break;
case const_: case const_:
case immutable_: case immutable_:
case inout_: case inout_:
@ -5372,11 +5458,12 @@ q{(int a, ...)
{ {
goToBookmark(bookmark); goToBookmark(bookmark);
node.assignExpression = parseAssignExpression(); node.assignExpression = parseAssignExpression();
if (node.assignExpression is null) return null;
} }
else else
node.type = type; node.type = type;
end: end:
expect(TokenType.rBracket); if (expect(TokenType.rBracket) is null) return null;
return node; return node;
case delegate_: case delegate_:
case function_: case function_:
@ -5400,6 +5487,7 @@ q{(int a, ...)
*/ */
TypeidExpression parseTypeidExpression() TypeidExpression parseTypeidExpression()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TypeidExpression; auto node = new TypeidExpression;
expect(TokenType.typeid_); expect(TokenType.typeid_);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -5426,6 +5514,7 @@ q{(int a, ...)
*/ */
TypeofExpression parseTypeofExpression() TypeofExpression parseTypeofExpression()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new TypeofExpression; auto node = new TypeofExpression;
expect(TokenType.typeof_); expect(TokenType.typeof_);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -5562,6 +5651,7 @@ q{doStuff(5)}c;
*/ */
UnionDeclaration parseUnionDeclaration() UnionDeclaration parseUnionDeclaration()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new UnionDeclaration; auto node = new UnionDeclaration;
expect(TokenType.union_); expect(TokenType.union_);
bool templated = false; bool templated = false;
@ -5599,6 +5689,7 @@ q{doStuff(5)}c;
*/ */
Unittest parseUnittest() Unittest parseUnittest()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new Unittest; auto node = new Unittest;
expect(TokenType.unittest_); expect(TokenType.unittest_);
node.blockStatement = parseBlockStatement(); node.blockStatement = parseBlockStatement();
@ -5651,6 +5742,7 @@ q{doStuff(5)}c;
*/ */
Vector parseVector() Vector parseVector()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new Vector; auto node = new Vector;
expect(TokenType.vector); expect(TokenType.vector);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -5668,6 +5760,7 @@ q{doStuff(5)}c;
*/ */
VersionCondition parseVersionCondition() VersionCondition parseVersionCondition()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new VersionCondition; auto node = new VersionCondition;
expect(TokenType.version_); expect(TokenType.version_);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -5694,6 +5787,7 @@ q{doStuff(5)}c;
*/ */
VersionSpecification parseVersionSpecification() VersionSpecification parseVersionSpecification()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new VersionSpecification; auto node = new VersionSpecification;
expect(TokenType.version_); expect(TokenType.version_);
expect(TokenType.assign); expect(TokenType.assign);
@ -5716,6 +5810,7 @@ q{doStuff(5)}c;
*/ */
WhileStatement parseWhileStatement() WhileStatement parseWhileStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new WhileStatement; auto node = new WhileStatement;
expect(TokenType.while_); expect(TokenType.while_);
expect(TokenType.lParen); expect(TokenType.lParen);
@ -5734,6 +5829,7 @@ q{doStuff(5)}c;
*/ */
WithStatement parseWithStatement() WithStatement parseWithStatement()
{ {
mixin(traceEnterAndExit!(__FUNCTION__));
auto node = new WithStatement; auto node = new WithStatement;
if (expect(TokenType.with_) is null) return null; if (expect(TokenType.with_) is null) return null;
if (expect(TokenType.lParen) is null) return null; if (expect(TokenType.lParen) is null) return null;
@ -5768,6 +5864,8 @@ private:
bool isSliceExpression() bool isSliceExpression()
{ {
if (startsWith(TokenType.lBracket, TokenType.rBracket))
return true;
return hasMagicDelimiter!(TokenType.slice)(); return hasMagicDelimiter!(TokenType.slice)();
} }
@ -5923,6 +6021,19 @@ private:
return node; return node;
} }
void warn(lazy string message)
{
if (suppressMessages > 0)
return;
++warningCount;
auto column = index < tokens.length ? tokens[index].column : 0;
auto line = index < tokens.length ? tokens[index].line : 0;
if (messageFunction is null)
writefln("^^ %s(%d:%d): %s", fileName, line, column, message);
else
messageFunction(fileName, line, column, message);
}
void error(lazy string message) void error(lazy string message)
{ {
import std.stdio; import std.stdio;
@ -5931,10 +6042,10 @@ private:
++errorCount; ++errorCount;
auto column = index < tokens.length ? tokens[index].column : 0; auto column = index < tokens.length ? tokens[index].column : 0;
auto line = index < tokens.length ? tokens[index].line : 0; auto line = index < tokens.length ? tokens[index].line : 0;
if (errorFunction is null) if (messageFunction is null)
stderr.writefln("!! %s(%d:%d): %s", fileName, line, column, message); writefln("!! %s(%d:%d): %s", fileName, line, column, message);
else else
errorFunction(fileName, line, column, message); messageFunction(fileName, line, column, message);
} }
while (moreTokens()) while (moreTokens())
{ {
@ -6138,7 +6249,7 @@ private:
LexerConfig config; LexerConfig config;
auto r = byToken(cast(const(ubyte)[]) sourceCode, config); auto r = byToken(cast(const(ubyte)[]) sourceCode, config);
Parser p; Parser p;
//p.errorFunction = &doNothingErrorFunction; //p.messageFunction = &doNothingErrorFunction;
p.fileName = testName ~ ".d"; p.fileName = testName ~ ".d";
p.tokens = r.array(); p.tokens = r.array();
return p; return p;
@ -6150,21 +6261,29 @@ private:
~ `version (verbose) scope(exit) trace("<< ` ~ fun ~ ` ");`; ~ `version (verbose) scope(exit) trace("<< ` ~ fun ~ ` ");`;
} }
version (verbose) void trace(string message) version (verbose)
{ {
if (suppressMessages > 0) void trace(lazy string message)
return; {
if (index < tokens.length) if (suppressMessages > 0)
stderr.writeln(message, "(", current.line, ":", current.column, ")"); return;
else if (index < tokens.length)
stderr.writeln(message, "(EOF:0)"); writeln(message, "(", current.line, ":", current.column, ")");
else
writeln(message, "(EOF:0)");
}
}
else
{
void trace(lazy string message) {}
} }
uint errorCount; uint errorCount;
uint warningCount;
const(Token)[] tokens; const(Token)[] tokens;
size_t index; size_t index;
string fileName; string fileName;
void function(string, int, int, string) errorFunction; void function(string, int, int, string) messageFunction;
static immutable string BASIC_TYPE_CASE_RANGE = q{case bool_: .. case wchar_:}; static immutable string BASIC_TYPE_CASE_RANGE = q{case bool_: .. case wchar_:};
static immutable string LITERAL_CASE_RANGE = q{case doubleLiteral: .. case wstringLiteral:}; static immutable string LITERAL_CASE_RANGE = q{case doubleLiteral: .. case wstringLiteral:};
static immutable string SPECIAL_CASE_RANGE = q{case specialDate: .. case specialPrettyFunction:}; static immutable string SPECIAL_CASE_RANGE = q{case specialDate: .. case specialPrettyFunction:};

15
std/d/runtester.sh Executable file
View File

@ -0,0 +1,15 @@
if [ ! -d runs ]; then
mkdir runs
fi
for file in /usr/include/d/std/*.d; do
shortFile=$(basename $file)
echo "Parsing" $shortFile "..."
outFile=runs/$shortFile.txt
./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//"

View File

@ -64,6 +64,6 @@ void main(string[] args)
LexerConfig config; LexerConfig config;
auto tokens = byToken(rawSource, config).array(); auto tokens = byToken(rawSource, config).array();
Module m = parseModule(tokens, args[1]); Module m = parseModule(tokens, args[1]);
ASTVisitor visitor = new TestVisitor; //ASTVisitor visitor = new TestVisitor;
visitor.visit(m); //visitor.visit(m);
} }