Skip to content

Commit

Permalink
Remove empty newlines.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Dec 13, 2012
1 parent c124dc1 commit e25e566
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/parse.c
Expand Up @@ -379,29 +379,23 @@ Dsymbols *Parser::parseDeclDefs(int once)
s = new UserAttributeDeclaration(exps, a);
break;
}

else if (peek(&token)->value == TOKidentifier)
{
if (isPredefinedAttribute(peek(&token)->ident))
{
stc = parseAttribute();
goto Lstc;
}

else
{
nextToken();

Expressions* exprs = new Expressions();
Expression* expr = parsePrimaryExp();

if (token.value == TOKlparen)
expr = new CallExp(loc, expr, parseArguments());

exprs->push(expr);
a = parseBlock();
s = new UserAttributeDeclaration(exprs, a);

break;
}
}
Expand Down

0 comments on commit e25e566

Please sign in to comment.