Merge branch 'master' of https://github.com/Hackerpilot/Dscanner
This commit is contained in:
commit
c0994dc792
|
@ -195,7 +195,7 @@ class XMLPrinter : ASTVisitor
|
|||
override void visit(BreakStatement breakStatement)
|
||||
{
|
||||
if (breakStatement.label.type == TokenType.invalid)
|
||||
output.writeln("<breakStatement>");
|
||||
output.writeln("<breakStatement/>");
|
||||
else
|
||||
output.writeln("<breakStatement label=\"", breakStatement.label, "\">");
|
||||
}
|
||||
|
@ -1098,11 +1098,6 @@ class XMLPrinter : ASTVisitor
|
|||
mixin (tagAndAccept!"structMemberInitializers");
|
||||
}
|
||||
|
||||
override void visit(SwitchBody switchBody)
|
||||
{
|
||||
mixin (tagAndAccept!"switchBody");
|
||||
}
|
||||
|
||||
override void visit(SwitchStatement switchStatement)
|
||||
{
|
||||
mixin (tagAndAccept!"switchStatement");
|
||||
|
|
16
std/d/ast.d
16
std/d/ast.d
|
@ -186,7 +186,6 @@ public:
|
|||
/** */ void visit(StructInitializer structInitializer) { structInitializer.accept(this); }
|
||||
/** */ void visit(StructMemberInitializer structMemberInitializer) { structMemberInitializer.accept(this); }
|
||||
/** */ void visit(StructMemberInitializers structMemberInitializers) { structMemberInitializers.accept(this); }
|
||||
/** */ void visit(SwitchBody switchBody) { switchBody.accept(this); }
|
||||
/** */ void visit(SwitchStatement switchStatement) { switchStatement.accept(this); }
|
||||
/** */ void visit(Symbol symbol) { symbol.accept(this); }
|
||||
/** */ void visit(SynchronizedStatement synchronizedStatement) { synchronizedStatement.accept(this); }
|
||||
|
@ -2254,27 +2253,16 @@ public:
|
|||
/** */ StructMemberInitializer[] structMemberInitializers;
|
||||
}
|
||||
|
||||
///
|
||||
class SwitchBody : ASTNode
|
||||
{
|
||||
public:
|
||||
override void accept(ASTVisitor visitor)
|
||||
{
|
||||
mixin (visitIfNotNull!(statements));
|
||||
}
|
||||
/** */ Statement[] statements;
|
||||
}
|
||||
|
||||
///
|
||||
class SwitchStatement : ASTNode
|
||||
{
|
||||
public:
|
||||
override void accept(ASTVisitor visitor)
|
||||
{
|
||||
mixin (visitIfNotNull!(expression, switchBody));
|
||||
mixin (visitIfNotNull!(expression, statement));
|
||||
}
|
||||
/** */ Expression expression;
|
||||
/** */ SwitchBody switchBody;
|
||||
/** */ Statement statement;
|
||||
}
|
||||
|
||||
///
|
||||
|
|
|
@ -4640,29 +4640,11 @@ q{(int a, ...)
|
|||
return node;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a SwitchBody
|
||||
*
|
||||
* $(GRAMMAR $(RULEDEF switchBody):
|
||||
* $(LITERAL '{') $(RULE statement)+ $(LITERAL '}')
|
||||
* ;)
|
||||
*/
|
||||
SwitchBody parseSwitchBody()
|
||||
{
|
||||
mixin(traceEnterAndExit!(__FUNCTION__));
|
||||
auto node = new SwitchBody;
|
||||
expect(TokenType.lBrace);
|
||||
while (moreTokens() && tokens[index] != TokenType.rBrace)
|
||||
node.statements ~= parseStatement();
|
||||
expect(TokenType.rBrace);
|
||||
return node;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a SwitchStatement
|
||||
*
|
||||
* $(GRAMMAR $(RULEDEF switchStatement):
|
||||
* $(LITERAL 'switch') $(LITERAL '$(LPAREN)') $(RULE expression) $(LITERAL '$(RPAREN)') $(RULE switchBody)
|
||||
* $(LITERAL 'switch') $(LITERAL '$(LPAREN)') $(RULE expression) $(LITERAL '$(RPAREN)') $(RULE statement)
|
||||
* ;)
|
||||
*/
|
||||
SwitchStatement parseSwitchStatement()
|
||||
|
@ -4673,7 +4655,7 @@ q{(int a, ...)
|
|||
expect(TokenType.lParen);
|
||||
node.expression = parseExpression();
|
||||
expect(TokenType.rParen);
|
||||
node.switchBody = parseSwitchBody();
|
||||
node.statement = parseStatement();
|
||||
return node;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue