summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Lexer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* move src/shared/cplusplus/ -> src/libs/3rdparty/cplusplus/Oswald Buddenhagen2011-05-161-732/+0
| | | | Approved-by: legal
* Fix/add copyright headersTobias Hunger2011-05-061-1/+1
| | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
* Update license.hjk2011-04-131-14/+13
|
* It's 2011 now.con2011-01-121-1/+1
| | | | Reviewed-by: hjk
* License headers.con2010-12-171-7/+11
|
* Get rid of the prefix findOrInsert for the functions in CPlusPlus::Control.Roberto Raggi2010-08-111-7/+7
|
* Recognize C++0x lambda expressions.Roberto Raggi2010-03-241-1/+7
|
* Long live the king!hjk2010-03-051-1/+1
|
* Revert "Split Objective-C keyword parsing to handle the '@' separately."Erik Verbruggen2010-02-151-14/+48
| | | | This reverts commit 2a59d2ae0c889fe6e4ac50a3f110b0103f880c15.
* Split Objective-C keyword parsing to handle the '@' separately.Erik Verbruggen2010-02-151-48/+14
| | | | | | | | | | | | | | | | | | | | | | 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 pre-precessor bug.Erik Verbruggen2010-02-101-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
* Introduced type matchers.Roberto Raggi2009-11-231-2/+0
|
* Accepts `$' as valid character when recognizing identifiers.Roberto Raggi2009-11-041-3/+3
| | | | Added support for yet another gcc extension that is using in OSX 10.6 system headers.
* Cleanup the C++ front-end.Roberto Raggi2009-10-201-2/+2
| | | | 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/+1
| | | | | | 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
|
* Stop scanning string literals when the current character is a newline.Roberto Raggi2009-08-041-1/+4
|
* Compile the C++ parser library with Sun CC 5.9.Thiago Macieira2009-08-031-96/+98
| | | | | | | | | | | | 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-1/+1
|
* Replaced T_INT_LITERAL and T_FLOAT_LITERAL with T_NUMERIC_LITERAL.Roberto Raggi2009-07-101-2/+2
|
* Update license headers and sales contact details.Jason McDonald2009-06-171-2/+2
| | | | Reviewed-by: Trust Me
* Support Doxygen comment style after membersThorbjørn Lindeijer2009-03-201-0/+6
| | | | | | Forms /**<, /*!<, ///< and //!<. Done with Roberto Raggi.
* Fixed: Parsing of /**/ tokens.Roberto Raggi2009-03-021-0/+6
|
* Improved matching of qdox/doxygen comments.Roberto Raggi2009-03-021-1/+8
|
* Fixes: change file license headers to include LGPLhjk2009-02-251-21/+17
|
* Fixed highlighting of comment closing element */Thorbjørn Lindeijer2009-02-201-2/+3
| | | | | | | Was taking the wrong state, causing it to appear in Doxygen style instead of as a normal comment. Fix by Roberto Raggi
* Initial support for doxygen comments.Roberto Raggi2009-02-201-10/+32
|
* Fixes: move all files in shared/* to src/shared/*hjk2009-01-261-0/+680