Skip to content
Snippets Groups Projects
Commit dc08c07d authored by Roberto Raggi's avatar Roberto Raggi
Browse files

SwitchStatementAST::lastToken().

parent 5ceea60c
No related branches found
No related tags found
No related merge requests found
......@@ -2258,7 +2258,6 @@ unsigned SimpleNameAST::firstToken() const
unsigned SimpleNameAST::lastToken() const
{
assert(0 && "review me");
return identifier_token + 1;
}
......@@ -2275,7 +2274,6 @@ unsigned SimpleSpecifierAST::firstToken() const
unsigned SimpleSpecifierAST::lastToken() const
{
assert(0 && "review me");
return specifier_token + 1;
}
......@@ -2293,7 +2291,6 @@ unsigned TypeofSpecifierAST::firstToken() const
unsigned TypeofSpecifierAST::lastToken() const
{
assert(0 && "review me");
if (expression)
return expression->lastToken();
return typeof_token + 1;
......@@ -2313,7 +2310,6 @@ unsigned SizeofExpressionAST::firstToken() const
unsigned SizeofExpressionAST::lastToken() const
{
assert(0 && "review me");
if (expression)
return expression->lastToken();
return sizeof_token + 1;
......@@ -2333,7 +2329,6 @@ unsigned StringLiteralAST::firstToken() const
unsigned StringLiteralAST::lastToken() const
{
assert(0 && "review me");
if (next)
return next->lastToken();
return token + 1;
......@@ -2354,10 +2349,15 @@ unsigned SwitchStatementAST::firstToken() const
unsigned SwitchStatementAST::lastToken() const
{
assert(0 && "review me");
if (statement)
return statement->lastToken();
return rparen_token + 1;
else if (rparen_token)
return rparen_token + 1;
else if (condition)
return condition->lastToken();
else if (lparen_token)
return lparen_token + 1;
return switch_token + 1;
}
void TemplateArgumentListAST::accept0(ASTVisitor *visitor)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment