aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseCXXInlineMethods.cpp
AgeCommit message (Expand)Author
2009-09-11Alter Action's friend interface to prepare for templated friend declarations andJohn McCall
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-24Make sure to adjust function template declarations to their templatedDouglas Gregor
2009-08-22Implement delayed parsing for member function templates. Fixes PR4608.Douglas Gregor
2009-08-20Initial support for parsing and representation of member function templates.Douglas Gregor
2009-08-11Argument-dependent lookup for friend declarations. Add a new decl type,John McCall
2009-08-06First pass at friend semantics.John McCall
2009-07-22Fix the parsing of default arguments for inline member function Eli Friedman
2009-07-21Patch to accomodate Doug's comment on defaultFariborz Jahanian
2009-07-15Added ASTs to destructor decl AST for default destruction of object'sFariborz Jahanian
2009-07-14Build AST for default ctor-initializer when constructor hasFariborz Jahanian
2009-07-14Patch to build AST for ctor's initializer list according toFariborz Jahanian
2009-05-27Reimplement much of the way that we track nested classes in theDouglas Gregor
2009-04-26The mysterious bug turns out to be an incredibly bone-headed mistake.Sebastian Redl
2009-04-26Implement function-try-blocks. However, there's a very subtle bug that I can'...Sebastian Redl
2009-03-29Push DeclGroup much farther throughout the compiler. Now the variousChris Lattner
2009-03-28Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for aChris Lattner
2009-03-15Convert a bunch of actions to smart pointers, and also bring PrintParserCallb...Sebastian Redl
2009-03-05Simplify the interface to ParseFunctionStatementBody to not take Chris Lattner
2009-01-29move library-specific diagnostic headers into library private dirs. ReduceChris Lattner
2009-01-27Split the single monolithic DiagnosticKinds.def file into oneChris Lattner
2009-01-09When we see a reference to a struct, class, or union like "struct X"Douglas Gregor
2008-12-16Delay parsing of default arguments of member functions until the classDouglas Gregor
2008-12-10Use a scoped object to manage entry/exit from a parser scope rather than expl...Douglas Gregor
2008-11-10Improve parser error recovery after a constructor initializerDouglas Gregor
2008-11-05Initial implementation of parsing, semantic analysis, and AST-buildingDouglas Gregor
2008-06-24The only caller of this knows that the current token is l_brace, so this can ...Argyrios Kyrtzidis
2008-06-24Add parsing support for C++ classes.Argyrios Kyrtzidis