summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Token.h
Commit message (Collapse)AuthorAgeFilesLines
* move src/shared/cplusplus/ -> src/libs/3rdparty/cplusplus/Oswald Buddenhagen2011-05-161-362/+0
| | | | Approved-by: legal
* Fix/add copyright headersTobias Hunger2011-05-061-1/+1
| | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
* Update license.hjk2011-04-131-14/+13
|
* s:// end of namespace :// namespace :g for consistencyhjk2011-02-041-1/+1
| | | | We use the latter style everywhere else to signify the end of a namespace block.
* It's 2011 now.con2011-01-121-1/+1
| | | | Reviewed-by: hjk
* C++: Add parsing of Q_PRIVATE_PROPERTY.Christian Kamm2011-01-041-0/+1
| | | | Reviewed-by: Roberto Raggi
* License headers.con2010-12-171-7/+11
|
* Parse and create AST nodes for the Q_MOC_RUN extensions.Roberto Raggi2010-03-171-1/+5
|
* Added parser support for Q_INTERFACES.Erik Verbruggen2010-03-171-0/+1
|
* Long live the king!hjk2010-03-051-1/+1
|
* Revert "Split Objective-C keyword parsing to handle the '@' separately."Erik Verbruggen2010-02-151-23/+33
| | | | This reverts commit 2a59d2ae0c889fe6e4ac50a3f110b0103f880c15.
* Split Objective-C keyword parsing to handle the '@' separately.Erik Verbruggen2010-02-151-33/+23
| | | | | | | | | | | | | | | | | | | | | | 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 Verbruggen2010-02-081-2/+1
|
* Removed #ifdefs so all AST nodes are always there.Erik Verbruggen2010-02-041-4/+1
| | | | | | 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.
* Merge ichecker branch changes into the mainline. New project can be found ↵Wolfgang Beck2010-01-191-2/+9
| | | | under src/tools/ICheck
* Use const literals.Roberto Raggi2009-12-011-4/+4
|
* Inital support for Q_D/Q_Q declarations.Roberto Raggi2009-11-301-1/+3
|
* CleanupRoberto Raggi2009-11-231-2/+0
|
* Added getters.Roberto Raggi2009-11-131-0/+8
|
* Cleanup the C++ front-end.Roberto Raggi2009-10-201-4/+4
| | | | Removed CPLUSPLUS_BEGIN/END_NAMESPACE & co and made it possible to compile the parser with CPLUSPLUS_WITHOUT_QT.
* Introduced T_CPP_COMMENT and T_CPP_DOXY_COMMENT to handle C++-style comments ↵Roberto Raggi2009-09-291-1/+4
| | | | | | and improved CPPEditor::isInComment to handle the newly introduced tokens. As side effect,this change should fix the regression we introduced in the "automagically" quote/brace insertion.
* long live the kinghjk2009-08-141-1/+1
|
* Compile the C++ parser library with Sun CC 5.9.Thiago Macieira2009-08-031-19/+19
| | | | | | | | | | | | Things you mustn't do: 1) end an enum with a comma 2) #include <cxxxx> and not use std:: 3) use anonymous structures All three things are invalid C++. Anonymous structures inside anonymous unions are allowed by GCC, but that doesn't mean it's valid.
* Fixed a few typos and bugs in the ObjC++ support.Roberto Raggi2009-07-131-3/+3
|
* Replaced T_INT_LITERAL and T_FLOAT_LITERAL with T_NUMERIC_LITERAL.Roberto Raggi2009-07-101-2/+1
|
* Introduced ForeachStatementAST and the bits to parse foreach statements when ↵Roberto Raggi2009-07-031-3/+4
| | | | qtMocRun is enabled.
* Update license headers and sales contact details.Jason McDonald2009-06-171-2/+2
| | | | Reviewed-by: Trust Me
* Added support for Q_SIGNAL and Q_SLOT.Roberto Raggi2009-03-251-0/+2
|
* Added a bit to annotate the generated tokens.Roberto Raggi2009-03-031-1/+2
|
* Fixes: change file license headers to include LGPLhjk2009-02-251-21/+17
|
* Initial support for doxygen comments.Roberto Raggi2009-02-201-0/+4
|
* Fixes: move all files in shared/* to src/shared/*hjk2009-01-261-0/+336