Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed Q_PROPERTY parsing to handle all possible cases. | Erik Verbruggen | 2010-02-16 | 1 | -27/+4 |
| | |||||
* | Revert "Split Objective-C keyword parsing to handle the '@' separately." | Erik Verbruggen | 2010-02-15 | 1 | -54/+27 |
| | | | | This reverts commit 2a59d2ae0c889fe6e4ac50a3f110b0103f880c15. | ||||
* | Revert "Added Objective-C @try block parsing." | Erik Verbruggen | 2010-02-15 | 1 | -60/+1 |
| | | | | This reverts commit f4163b8ba01cd1a4f5d91c83a3863939b7809375. | ||||
* | Added Objective-C @try block parsing. | Erik Verbruggen | 2010-02-15 | 1 | -1/+60 |
| | |||||
* | Split Objective-C keyword parsing to handle the '@' separately. | Erik Verbruggen | 2010-02-15 | 1 | -27/+54 |
| | | | | | | | | | | | | | | | | | | | | | | Because apparently, while designing the Objective-C language, somebody thought it was a world-class idea to allow any white-space between the '@' character and the subsequent keyword. With this fix, we now correctly parse: @ dynamic and: @ selector and: @"foo" "bar" @"mooze" (This last one is 1 single string split over multiple lines.) Wonderful, isn't it? What we (and Clang) do not support, but what GCC supports is something like: @"foo"@@ "bar" @"mooze" @@ which is equivalent to @"foobarmooze". | ||||
* | Removed Q_DECLARE_FLAGS parsing, leaving it to the CPP to expand it. | Erik Verbruggen | 2010-02-08 | 1 | -21/+0 |
| | |||||
* | Changed ObjC message arguments to have SimpleName for the name part. | Erik Verbruggen | 2010-02-08 | 1 | -3/+3 |
| | |||||
* | Changed Q_PROPERTY parsing and AST storage. | Erik Verbruggen | 2010-02-07 | 1 | -5/+77 |
| | |||||
* | Reworked parts of the QtPropertyDeclaration parsing and handling. | Erik Verbruggen | 2010-02-07 | 1 | -8/+8 |
| | |||||
* | Added AST nodes for compound expressions (a GNU extension). | Erik Verbruggen | 2010-02-07 | 1 | -2/+14 |
| | |||||
* | Removed #ifdefs so all AST nodes are always there. | Erik Verbruggen | 2010-02-04 | 1 | -2/+0 |
| | | | | | | Also removed the (conditional) invoke_token from DeclarationAST and use the qt_invokable_token to store the Q_INVOKABLE, and fixed the ASTMatch code generation. | ||||
* | Added clone methods to the AST. | Erik Verbruggen | 2010-02-02 | 1 | -8/+8 |
| | |||||
* | Merge remote branch 'origin/1.3' | Oswald Buddenhagen | 2010-01-29 | 1 | -1/+1 |
|\ | | | | | | | Trailing whitespace removal re-applied manually. | ||||
* | | Merge ichecker branch changes into the mainline. New project can be found ↵ | Wolfgang Beck | 2010-01-19 | 1 | -1/+44 |
| | | | | | | | | under src/tools/ICheck | ||||
* | | Fixed semantic check for ObjC fast-enumeration for-loops, then merged it ↵ | Erik Verbruggen | 2010-01-11 | 1 | -2/+2 |
| | | | | | | | | with the semantic check for the foreach. | ||||
* | | Fixed potential 0 pointer deref. | Erik Verbruggen | 2009-12-18 | 1 | -1/+5 |
| | | |||||
* | | Inital support for Q_D/Q_Q declarations. | Roberto Raggi | 2009-11-30 | 1 | -0/+14 |
| | | |||||
* | | Cleanup | Roberto Raggi | 2009-11-23 | 1 | -1/+0 |
| | | |||||
* | | Fixed parsing of ctor-initializers and added a manual test for the AST matchers | Roberto Raggi | 2009-11-13 | 1 | -2/+2 |
| | | |||||
* | | Initial work on the pattern matcher for AST nodes. | Roberto Raggi | 2009-11-12 | 1 | -0/+17 |
| | | |||||
* | | Fixed the AST field names. | Roberto Raggi | 2009-11-10 | 1 | -133/+133 |
| | | |||||
* | | Ported the accept methods. | Roberto Raggi | 2009-11-10 | 1 | -72/+67 |
| | | |||||
* | | Cleanup specifiers. | Roberto Raggi | 2009-11-10 | 1 | -86/+63 |
| | | |||||
* | | Cleanup ptr operators. | Roberto Raggi | 2009-11-10 | 1 | -13/+7 |
| | | |||||
* | | Cleanup Catch clause | Roberto Raggi | 2009-11-10 | 1 | -5/+3 |
| | | |||||
* | | Cleanup nested name specifiers | Roberto Raggi | 2009-11-10 | 1 | -9/+5 |
| | | |||||
* | | Cleanup postfix declarators. | Roberto Raggi | 2009-11-10 | 1 | -4/+2 |
| | | |||||
* | | Cleanup Postfix operators. | Roberto Raggi | 2009-11-10 | 1 | -4/+2 |
| | | |||||
* | | Cleanup NewArrayDeclaratorAST | Roberto Raggi | 2009-11-10 | 1 | -4/+2 |
| | | |||||
* | | Cleanup MemInitializerAST | Roberto Raggi | 2009-11-10 | 1 | -8/+4 |
| | | |||||
* | | Cleanup base base specifiers. | Roberto Raggi | 2009-11-10 | 1 | -6/+4 |
| | | |||||
* | | Removed ObjCSynthesizedPropertyAST | Roberto Raggi | 2009-11-10 | 1 | -19/+0 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed ObjCMessageArgumentDeclarationListAST | Roberto Raggi | 2009-11-10 | 1 | -22/+0 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed ObjCPropertyAttributeListAST | Roberto Raggi | 2009-11-10 | 1 | -25/+3 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed ObjCSelectorArgumentListAST | Roberto Raggi | 2009-11-10 | 1 | -19/+0 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed ObjCMessageArgumentListAST | Roberto Raggi | 2009-11-10 | 1 | -19/+0 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed ObjCIdentifierListAST | Roberto Raggi | 2009-11-10 | 1 | -29/+9 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed TemplateArgumentListAST | Roberto Raggi | 2009-11-10 | 1 | -18/+2 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed DeclaratorListAST | Roberto Raggi | 2009-11-10 | 1 | -19/+0 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed StatementListAST | Roberto Raggi | 2009-11-10 | 1 | -17/+1 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed DeclarationListAST node. | Roberto Raggi | 2009-11-10 | 1 | -16/+1 |
| | | | | | | | | Done with Erik Verbruggen | ||||
* | | Removed the ExpressionListAST node. | Roberto Raggi | 2009-11-10 | 1 | -43/+15 |
|/ | | | | Done with Erik Verbruggen | ||||
* | Cleanup the C++ front-end. | Roberto Raggi | 2009-10-20 | 1 | -2/+2 |
| | | | | Removed CPLUSPLUS_BEGIN/END_NAMESPACE & co and made it possible to compile the parser with CPLUSPLUS_WITHOUT_QT. | ||||
* | Added protocol & class definedness checks, and added property attribute checks. | Erik Verbruggen | 2009-10-05 | 1 | -0/+2 |
| | |||||
* | long live the king | hjk | 2009-08-14 | 1 | -1/+1 |
| | |||||
* | Cleaned the ObjC AST up. | Erik Verbruggen | 2009-08-05 | 1 | -102/+26 |
| | |||||
* | Merged ObjCMethodDefinitionAST into ObjCMethodDeclarationAST. | Erik Verbruggen | 2009-08-04 | 1 | -13/+1 |
| | |||||
* | Added @synchronized parsing for Objective-C. | Erik Verbruggen | 2009-07-31 | 1 | -0/+14 |
| | |||||
* | Added Semantic checks for ObjC methods. | Erik Verbruggen | 2009-07-31 | 1 | -5/+6 |
| | |||||
* | Fix for ObjC fast-enumeration parsing. | Erik Verbruggen | 2009-07-29 | 1 | -0/+4 |
| |