This commit is contained in:
Hackerpilot 2013-10-29 10:46:25 -07:00
parent 0c843275ba
commit 77a698de23
1 changed files with 3 additions and 2 deletions

View File

@ -3413,10 +3413,10 @@ invariant() foo();
{ {
node.typeofExpression = parseTypeofExpression(); node.typeofExpression = parseTypeofExpression();
expect(TokenType.dot); expect(TokenType.dot);
node.identifierOrTemplateChain = parseIdentifierOrTemplateChain(); node.identifierOrTemplateChain = parseIdentifierOrTemplateChain();
} }
else else
node.symbol = parseSymbol(); node.symbol = parseSymbol();
return node; return node;
} }
@ -6192,6 +6192,7 @@ protected:
case at: case at:
case ref_: case ref_:
case extern_: case extern_:
case align_:
return true; return true;
default: default:
return false; return false;