Douglas Gregor wrote:
> Author: dgregor
> Date: Mon Nov  2 19:35:08 2009
> New Revision: 85851
>
> URL: http://llvm.org/viewvc/llvm-project?rev=85851&view=rev
> Log:
> Introduce a new class, UnqualifiedId, that provides a parsed
> representation of a C++ unqualified-id, along with a single parsing
> function (Parser::ParseUnqualifiedId) that will parse all of the
> various forms of unqualified-id in C++.
>
> Replace the representation of the declarator name in Declarator with
> the new UnqualifiedId class, simplifying declarator-id parsing
> considerably and providing more source-location information to
> Sema. In the future, I hope to migrate all of the other
> unqualified-id-parsing code over to this single representation, then
> begin to merge actions that are currently only different because we
> didn't have a unqualified notion of the name in the parser.
>   
Awesome, looking good.

Sebastian
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to