Age | Commit message (Expand) | Author |
2008-05-06 | Patch to refactor setter/getter names of property attributes into Selector | Fariborz Jahanian |
2008-05-05 | percolate @optional/@required protocols down to ASTs for | Fariborz Jahanian |
2008-05-02 | Lexicographically order enum declarations in AttributeList::Kind. | Ted Kremenek |
2008-05-01 | More ObjC2 property semantics work. Work in progress. | Fariborz Jahanian |
2008-04-27 | Parsing of namespaces: | Argyrios Kyrtzidis |
2008-04-25 | initial support for recognizing __transparent_union__ attributes | Nuno Lopes |
2008-04-24 | Patch to diagnose inconsistancies between properties declared in current and | Fariborz Jahanian |
2008-04-21 | Continuation of work on ObjC2's properties. | Fariborz Jahanian |
2008-04-21 | Clean up handling of function redeclarations | Douglas Gregor |
2008-04-18 | OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. | Nate Begeman |
2008-04-18 | Initial work for property implementation declarations. | Fariborz Jahanian |
2008-04-14 | New AST representation for each objc2's property declaration. | Fariborz Jahanian |
2008-04-14 | Make Parser::getAccessSpecifierIfPresent const, since it does not modify the ... | Douglas Gregor |
2008-04-13 | This patch adds very basic support for parsing and type-checking class | Douglas Gregor |
2008-04-13 | Test commit: fix a typo | Douglas Gregor |
2008-04-13 | This patch is just the easy part of the class names patch, which | Chris Lattner |
2008-04-11 | AST generation for objc2's property declarations. | Fariborz Jahanian |
2008-04-11 | Minor changes per Chris L's review. | Fariborz Jahanian |
2008-04-10 | Patch for: | Fariborz Jahanian |
2008-04-10 | reduce the amount of 'C++ magic' this code depends on :) | Chris Lattner |
2008-04-10 | refactor Parser::ParseStructDeclaration to return a vector of uninterpreted | Chris Lattner |
2008-04-10 | Fix typo. | Eric Christopher |
2008-04-08 | Add support for C++ default arguments, and rework Parse-Sema | Chris Lattner |
2008-04-07 | add an example. | Chris Lattner |
2008-04-06 | split parsing of identifier lists in function declarators out into | Chris Lattner |
2008-04-06 | split code for handling grouping parens in declarators from code that | Chris Lattner |
2008-04-06 | Use token lookahead to simplify some code that is rarely executed. | Chris Lattner |
2008-04-05 | Fix handling of implicit int, resolving PR2012 and reverting (and | Chris Lattner |
2008-04-02 | Two changes to Sema::LookupDecl() interface. | Steve Naroff |
2008-03-13 | improve DeclStmt to be able to store SourceRange info correctly. | Chris Lattner |
2008-03-10 | implement simple support for arbitrary token lookahead. Change the | Chris Lattner |
2008-03-07 | Add fastcall/stdcall attribute support | Nate Begeman |
2008-03-03 | Add a bunch of attributes, patch by Nuno Lopes. | Chris Lattner |
2008-02-29 | Add support for attribute(deprecated), patch by Nuno Lopes! | Chris Lattner |
2008-02-27 | Added support for attribute "noreturn." | Ted Kremenek |
2008-02-26 | add parsing, ast building and pretty printing support for C++ throw expressions. | Chris Lattner |
2008-02-25 | convert tabs to spaces, patch by Mike Stump! | Chris Lattner |
2008-02-24 | Two more Windows-related fixes: | Ted Kremenek |
2008-02-21 | Handle __attribute__((annotate("string"))) | Nate Begeman |
2008-02-21 | Collect and build and process type attributes on pointers. For | Chris Lattner |
2008-02-21 | move type attribute processing into the creatively named ProcessTypeAttribute... | Chris Lattner |
2008-02-20 | rename some methods. | Chris Lattner |
2008-02-20 | add a method to AttributeList that converts an identifier to an enum. | Chris Lattner |
2008-02-20 | add some code that will be used to remove processed attrs from | Chris Lattner |
2008-02-14 | Remove DeclSpec::Invalid, a recently added bool that allowed the parser to de... | Steve Naroff |
2008-02-12 | Allow the parser to detect invalid DeclSpec's. This fixes http://llvm.org/bug... | Steve Naroff |
2008-02-11 | Several cleanups surrounding Parser::ParseAsmStatement() and Parser::FuzzyPar... | Steve Naroff |
2008-02-11 | Move Microsoft __declspec hack from the parser to the preprocessor. Since we ... | Steve Naroff |
2008-02-09 | Behave correctly if a constraint expression is invalid. | Anders Carlsson |
2008-02-08 | Put back the top-level asm code; all tests pass now. | Anders Carlsson |