|  | Commit message (Expand) | Author | Age | Files | Lines | 
|---|
| * | Some utilities for using the smart pointers in Actions, especially Sema. Conv... | Sebastian Redl | 2008-12-13 | 1 | -1/+2 | 
| * | Convert a big bunch of expression parsers to use smart pointers. | Sebastian Redl | 2008-12-11 | 1 | -1/+1 | 
| * | Convert a number of statement parsers to smart pointers. | Sebastian Redl | 2008-12-11 | 1 | -2/+2 | 
| * | Use a scoped object to manage entry/exit from a parser scope rather than expl... | Douglas Gregor | 2008-12-10 | 1 | -6/+3 | 
| * | Modify the move emulation according to the excellent design of Howard Hinnant... | Sebastian Redl | 2008-12-10 | 1 | -10/+10 | 
| * | Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult | Sebastian Redl | 2008-12-09 | 1 | -4/+3 | 
| * | Lay the groundwork for converting the entire parser-sema chain to smart point... | Sebastian Redl | 2008-12-09 | 1 | -0/+3 | 
| * | Consistently use smart pointers for stmt and expr nodes in parser local varia... | Sebastian Redl | 2008-12-09 | 1 | -9/+10 | 
| * | Fix PR3172: if we see an eof or } at the top level, reject it. | Chris Lattner | 2008-12-08 | 1 | -0/+9 | 
| * | Representation of template type parameters and non-type template | Douglas Gregor | 2008-12-05 | 1 | -1/+1 | 
| * | Basic support for parsing templates, from Andrew Sutton | Douglas Gregor | 2008-12-01 | 1 | -0/+2 | 
| * | Improve error recovery when parsing a function definition fails | Douglas Gregor | 2008-12-01 | 1 | -1/+1 | 
| * | Add some comments. | Argyrios Kyrtzidis | 2008-11-26 | 1 | -0/+9 | 
| * | Implement some suggestions by Daniel: | Argyrios Kyrtzidis | 2008-11-26 | 1 | -6/+8 | 
| * | Remove an empty if and add a reminder for when we implement C++ try-catch. | Sebastian Redl | 2008-11-24 | 1 | -4/+1 | 
| * | make the 'to match this' diagnostic a note. | Chris Lattner | 2008-11-23 | 1 | -1/+1 | 
| * | Split the DiagnosticInfo class into two disjoint classes: | Chris Lattner | 2008-11-22 | 1 | -2/+2 | 
| * | Tiny fix to the parsing of linkage-specifications | Douglas Gregor | 2008-11-21 | 1 | -2/+2 | 
| * | Fix this: | Argyrios Kyrtzidis | 2008-11-19 | 1 | -6/+12 | 
| * | remove uses of IdentifierInfo::getName() | Chris Lattner | 2008-11-19 | 1 | -2/+2 | 
| * | remove the last couple obsolete forms of Parser::Diag. | Chris Lattner | 2008-11-18 | 1 | -12/+0 | 
| * | Change a couple of the Parser::Diag methods to return DiagnosticInfo | Chris Lattner | 2008-11-18 | 1 | -12/+14 | 
| * | This reworks some of the Diagnostic interfaces a bit to change how diagnostics | Chris Lattner | 2008-11-18 | 1 | -6/+3 | 
| * | Change the diagnostics interface to take an array of pointers to | Chris Lattner | 2008-11-18 | 1 | -2/+4 | 
| * | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor | 2008-11-17 | 1 | -1/+1 | 
| * | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis | 2008-11-08 | 1 | -0/+71 | 
| * | Initial implementation of parsing, semantic analysis, and AST-building | Douglas Gregor | 2008-11-05 | 1 | -4/+17 | 
| * | eliminate ObjCPropertyAttrs an corresponding enums, just use | Chris Lattner | 2008-10-20 | 1 | -12/+0 | 
| * | remove extraneous braces | Chris Lattner | 2008-10-20 | 1 | -3/+2 | 
| * | simplify some other code for __extension__ processing. | Chris Lattner | 2008-10-20 | 1 | -0/+1 | 
| * | implement a couple fixme's by implementing __extension__ properly. | Chris Lattner | 2008-10-20 | 1 | -5/+4 | 
| * | fix indentation | Chris Lattner | 2008-10-20 | 1 | -2/+3 | 
| * | Implement support for C++ direct initializers in declarations, e.g. "int x(1);". | Argyrios Kyrtzidis | 2008-10-06 | 1 | -1/+3 | 
| * | Add Parser support for #pragma pack | Daniel Dunbar | 2008-10-04 | 1 | -0/+12 | 
| * | Parser support for prefix __attribute__ on @protocol. | Daniel Dunbar | 2008-09-26 | 1 | -3/+8 | 
| * | Pass SourceRanges by reference to the various Diag methods. | Argyrios Kyrtzidis | 2008-08-24 | 1 | -1/+1 | 
| * | Add a Parser::Diag overload that can receive a custom string along with a Sou... | Argyrios Kyrtzidis | 2008-08-24 | 1 | -0/+6 | 
| * | make sure that ParseAST invokes the action for end of translation unit. | Chris Lattner | 2008-08-23 | 1 | -3/+4 | 
| * | add action to know about end of translation unit. | Chris Lattner | 2008-08-23 | 1 | -1/+3 | 
| * | we already have a handle on the 'in' keyword, don't bother getting two. | Chris Lattner | 2008-08-23 | 1 | -1/+0 | 
| * | minor cleanup, remove finalize method. | Chris Lattner | 2008-08-23 | 1 | -9/+3 | 
| * | Change Parser & Sema to use interned "super" for comparions. | Daniel Dunbar | 2008-08-14 | 1 | -0/+2 | 
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -0/+1 | 
| * | Fix rdar://6124613 a crash on invalid code. | Chris Lattner | 2008-08-05 | 1 | -2/+4 | 
| * | Add more Parser/Sema support for GCC asm-label extension. | Daniel Dunbar | 2008-08-05 | 1 | -1/+5 | 
| * | add a new diag helper that takes a range. | Chris Lattner | 2008-07-26 | 1 | -0/+6 | 
| * | Make Declarator::getDeclSpec() return a const reference to avoid | Chris Lattner | 2008-06-26 | 1 | -1/+1 | 
| * | Add parsing support for C++ classes. | Argyrios Kyrtzidis | 2008-06-24 | 1 | -0/+2 | 
| * | K&R-style functions not allowed in C++. | Argyrios Kyrtzidis | 2008-06-21 | 1 | -2/+3 | 
| * | Test commit to see if new account works. | Mike Stump | 2008-06-19 | 1 | -60/+60 |