Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Source update. | Wolfgang Beck | 2010-02-03 | 6 | -4/+91 |
| | |||||
* | Fixed throw expression parsing. | Erik Verbruggen | 2010-02-02 | 1 | -4/+20 |
| | |||||
* | Fixed unintended switch-fall-through. | Erik Verbruggen | 2010-02-02 | 1 | -3/+5 |
| | | | | For @synchornized when ObjC is disabled. | ||||
* | Extended operator precedence parsing. | Erik Verbruggen | 2010-02-02 | 1 | -97/+84 |
| | | | | | It now includes comma expressions, conditionals and assignment expressions. | ||||
* | Put precedence constants in an enum. | Erik Verbruggen | 2010-02-02 | 2 | -80/+77 |
| | |||||
* | Added AST building for __attribute__ constructs. | Erik Verbruggen | 2010-02-02 | 1 | -6/+21 |
| | |||||
* | Fixed compiler "sensitive" use of &(...) expressions. | Erik Verbruggen | 2010-02-02 | 1 | -61/+61 |
| | |||||
* | Added clone methods to the AST. | Erik Verbruggen | 2010-02-02 | 5 | -23/+1773 |
| | |||||
* | Merge remote branch 'origin/1.3' | Oswald Buddenhagen | 2010-01-29 | 6 | -7/+7 |
|\ | | | | | | | Trailing whitespace removal re-applied manually. | ||||
| * | remove trailing whitespace | Oswald Buddenhagen | 2010-01-29 | 1 | -1/+1 |
| | | | | | | | | doing it in 1.3 as well to avoid possible later conflicts | ||||
| * | Add copyright headers. | Tobias Hunger | 2010-01-07 | 1 | -0/+29 |
| | | | | | | | | | | | | | | * Make sure all non-empty source files found below ./src have a copyright header. Reviewed-by: con | ||||
* | | Removed methods which always returned a constant (false). | Erik Verbruggen | 2010-01-28 | 1 | -7/+1 |
| | | |||||
* | | Changed binary expression parsing to use precedence parsing. | Erik Verbruggen | 2010-01-28 | 2 | -242/+123 |
| | | |||||
* | | Introduced a few paranoia checks. | Roberto Raggi | 2010-01-26 | 1 | -3/+10 |
| | | |||||
* | | Initialize Parser::depth | Roberto Raggi | 2010-01-25 | 1 | -1/+2 |
| | | |||||
* | | Temporary fix to prevent the parser from going too deep into recursion. | Erik Verbruggen | 2010-01-22 | 2 | -1/+9 |
| | | |||||
* | | Fixed typo in method name. | Erik Verbruggen | 2010-01-22 | 1 | -1/+1 |
| | | |||||
* | | Manually reverted parts of d61eb9c8936807d8e6d8fdbbaa2d53a4c3f3a700. | Erik Verbruggen | 2010-01-22 | 2 | -105/+13 |
| | | |||||
* | | Removed duplicate null check. | Erik Verbruggen | 2010-01-22 | 1 | -1/+1 |
| | | |||||
* | | Fixed bug in ObjC class field parsing which could result in an invalid ↵ | Erik Verbruggen | 2010-01-22 | 1 | -4/+4 |
| | | | | | | | | pointer in the AST. | ||||
* | | Removed unused method. | Erik Verbruggen | 2010-01-22 | 2 | -15/+0 |
| | | |||||
* | | Merge ichecker branch changes into the mainline. New project can be found ↵ | Wolfgang Beck | 2010-01-19 | 18 | -5/+726 |
| | | | | | | | | under src/tools/ICheck |