Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Parse C++0x base-specifier-list. | Roberto Raggi | 2010-03-23 | 5 | -0/+16 | |
| | ||||||
* | Parse C++0x mem-initializer-list. | Roberto Raggi | 2010-03-23 | 3 | -2/+18 | |
| | ||||||
* | Warn for invalid pointer to references. | Roberto Raggi | 2010-03-23 | 1 | -0/+3 | |
| | ||||||
* | Warn for invalid references. | Roberto Raggi | 2010-03-23 | 1 | -0/+3 | |
| | ||||||
* | Recognize C++0x rvalue references. | Roberto Raggi | 2010-03-23 | 12 | -18/+41 | |
| | ||||||
* | Don't check the compound statement terminator when parsing. | Roberto Raggi | 2010-03-23 | 1 | -8/+0 | |
| | | | | The check should be done in the semantic phase. | |||||
* | Renamed the CompoundExpressionAST::compoundStatement. | Roberto Raggi | 2010-03-23 | 7 | -14/+14 | |
| | ||||||
* | Rewind the memory pool only after parsing a toplevel expression statements. | Roberto Raggi | 2010-03-23 | 2 | -10/+25 | |
| | ||||||
* | Fixed possible leaks when processing friend template classes and template ↵ | Roberto Raggi | 2010-03-19 | 1 | -7/+12 | |
| | | | | constructors. | |||||
* | Got rid of the memset. | Erik Verbruggen | 2010-03-18 | 2 | -17/+1 | |
| | ||||||
* | Regenerated the AST, now including constructors. | Erik Verbruggen | 2010-03-18 | 1 | -0/+926 | |
| | ||||||
* | Ensure that the memory pool can be reused after a rewind and get rid of the ↵ | Roberto Raggi | 2010-03-18 | 13 | -249/+80 | |
| | | | | segmented array. | |||||
* | Parse and create AST nodes for the Q_MOC_RUN extensions. | Roberto Raggi | 2010-03-17 | 13 | -5/+364 | |
| | ||||||
* | Added parser support for Q_INTERFACES. | Erik Verbruggen | 2010-03-17 | 14 | -3/+287 | |
| | ||||||
* | Fixed Q_ENUMS/Q_FLAGS parsing of enum names. | Erik Verbruggen | 2010-03-17 | 4 | -38/+42 | |
| | ||||||
* | Don't skip closing braces and Qt function specifiers. | Roberto Raggi | 2010-03-16 | 1 | -0/+10 | |
| | ||||||
* | Made Q_PROPERTY a valid declaration to restart parsing when recovering from ↵ | Erik Verbruggen | 2010-03-12 | 1 | -0/+1 | |
| | | | | an error. | |||||
* | Long live the king! | hjk | 2010-03-05 | 79 | -79/+79 | |
| | ||||||
* | Process the enumerator initializers. | Roberto Raggi | 2010-03-03 | 1 | -1/+3 | |
| | ||||||
* | Fixed parsing of properties whose name is a C++ keyword. | Erik Verbruggen | 2010-03-03 | 1 | -1/+8 | |
| | | | | Reviewed-by: Roberto Raggi | |||||
* | Compile with gcc -pedantic. | Roberto Raggi | 2010-02-25 | 3 | -4/+2 | |
| | ||||||
* | Simplified ObjC selectors in the AST. | Erik Verbruggen | 2010-02-23 | 16 | -269/+151 | |
| | ||||||
* | Fixed pre-processor handling for Q_PROPERTY, Q_ENUMS and Q_FLAGS. | Erik Verbruggen | 2010-02-22 | 1 | -6/+6 | |
| | ||||||
* | Added semantic checks for Q_PROPERTY declarations. | Erik Verbruggen | 2010-02-22 | 2 | -0/+15 | |
| | ||||||
* | Replaced usages of concrete type SimpleNameAST with the abstract NameAST. | Erik Verbruggen | 2010-02-22 | 2 | -6/+8 | |
| | ||||||
* | Fixed Q_PROPERTY parsing to handle all possible cases. | Erik Verbruggen | 2010-02-16 | 12 | -202/+37 | |
| | ||||||
* | Fixed Q_ENUMS/Q_FLAGS parsing to handle namespaces. | Erik Verbruggen | 2010-02-15 | 2 | -8/+42 | |
| | ||||||
* | Revert "Split Objective-C keyword parsing to handle the '@' separately." | Erik Verbruggen | 2010-02-15 | 10 | -382/+356 | |
| | | | | This reverts commit 2a59d2ae0c889fe6e4ac50a3f110b0103f880c15. | |||||
* | Revert "Added Objective-C @try block parsing." | Erik Verbruggen | 2010-02-15 | 15 | -491/+6 | |
| | | | | This reverts commit f4163b8ba01cd1a4f5d91c83a3863939b7809375. | |||||
* | Added Objective-C @try block parsing. | Erik Verbruggen | 2010-02-15 | 15 | -6/+491 | |
| | ||||||
* | Split Objective-C keyword parsing to handle the '@' separately. | Erik Verbruggen | 2010-02-15 | 10 | -356/+382 | |
| | | | | | | | | | | | | | | | | | | | | | | 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". | |||||
* | Fixed local usage highlighting for ObjC message parameters. | Erik Verbruggen | 2010-02-11 | 2 | -3/+2 | |
| | ||||||
* | Fixed pre-precessor bug. | Erik Verbruggen | 2010-02-10 | 1 | -2/+4 | |
| | | | | | | | | When a PP line ended with a \ (join line) and the next line was empty (ending th joining), the following token would be incorrectly marked as joined. Done-with: Roberto Raggi | |||||
* | Fixed error recovery when failing to parse Q_PROPERTY. | Erik Verbruggen | 2010-02-10 | 1 | -5/+10 | |
| | ||||||
* | Fixed tokenizing bug. | Erik Verbruggen | 2010-02-09 | 1 | -10/+10 | |
| | ||||||
* | Change ICHECK_BUILD ifdef in Q_OS_SYMBIAN. | Wolfgang Beck | 2010-02-09 | 1 | -1/+1 | |
| | ||||||
* | Removed Q_DECLARE_FLAGS parsing, leaving it to the CPP to expand it. | Erik Verbruggen | 2010-02-08 | 16 | -182/+2 | |
| | ||||||
* | Changed ObjC message arguments to have SimpleName for the name part. | Erik Verbruggen | 2010-02-08 | 9 | -26/+31 | |
| | ||||||
* | Changed Q_PROPERTY parsing and AST storage. | Erik Verbruggen | 2010-02-07 | 12 | -192/+310 | |
| | ||||||
* | Added semantic checks for Q_ENUMS. | Erik Verbruggen | 2010-02-07 | 11 | -71/+60 | |
| | ||||||
* | Simplified Q_FLAGS and Q_DECLARE_FLAGS parsing. | Erik Verbruggen | 2010-02-07 | 6 | -73/+82 | |
| | ||||||
* | Reworked parts of the QtPropertyDeclaration parsing and handling. | Erik Verbruggen | 2010-02-07 | 17 | -221/+618 | |
| | ||||||
* | Added semantic checks for compound expressions. | Erik Verbruggen | 2010-02-07 | 7 | -26/+69 | |
| | ||||||
* | Added AST nodes for compound expressions (a GNU extension). | Erik Verbruggen | 2010-02-07 | 12 | -21/+105 | |
| | ||||||
* | Avoid compile warning by putting parenthesis around && within || | Thorbjørn Lindeijer | 2010-02-05 | 1 | -2/+2 | |
| | ||||||
* | Removed #ifdefs so all AST nodes are always there. | Erik Verbruggen | 2010-02-04 | 12 | -62/+86 | |
| | | | | | | 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. | |||||
* | Modified parseObjCTypeQualifiers to do what the name indicates. | Erik Verbruggen | 2010-02-04 | 1 | -4/+11 | |
| | ||||||
* | Renamed method. | Erik Verbruggen | 2010-02-04 | 5 | -16/+5 | |
| | ||||||
* | Removed superfluous null check which somehow got back from being removed. | Erik Verbruggen | 2010-02-04 | 1 | -1/+1 | |
| | ||||||
* | Remove compiler warning. | Wolfgang Beck | 2010-02-03 | 1 | -2/+0 | |
| |