Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | move src/shared/cplusplus/ -> src/libs/3rdparty/cplusplus/ | Oswald Buddenhagen | 2011-05-16 | 1 | -442/+0 |
| | | | | Approved-by: legal | ||||
* | Fix/add copyright headers | Tobias Hunger | 2011-05-06 | 1 | -1/+1 |
| | | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2 | ||||
* | Update license. | hjk | 2011-04-13 | 1 | -14/+13 |
| | |||||
* | It's 2011 now. | con | 2011-01-12 | 1 | -1/+1 |
| | | | | Reviewed-by: hjk | ||||
* | C++ completion: Skip Q_PROPERTY and Q_ENUMS symbols. | Christian Kamm | 2011-01-07 | 1 | -0/+6 |
| | | | | Reviewed-by: Erik Verbruggen | ||||
* | License headers. | con | 2010-12-17 | 1 | -7/+11 |
| | |||||
* | Fixed alignment issues with 64 bits ABIs. | Roberto Raggi | 2010-09-03 | 1 | -2/+6 |
| | |||||
* | Merge CPlusPlus::NameId and CPlusPlus::Identifier. | Roberto Raggi | 2010-09-02 | 1 | -1/+1 |
| | |||||
* | Renamed Symbol::scope() to Symbol::enclosingScope(). | Roberto Raggi | 2010-08-26 | 1 | -7/+7 |
| | |||||
* | Renamed Symbol::identity() to Symbol::unqualifiedName(). | Roberto Raggi | 2010-08-26 | 1 | -2/+2 |
| | |||||
* | Renamed Symboo::isScopedSymbol(). | Roberto Raggi | 2010-08-12 | 1 | -1/+1 |
| | |||||
* | Enabled the template instantiation. | Roberto Raggi | 2010-08-11 | 1 | -0/+9 |
| | |||||
* | Mark the templates. | Roberto Raggi | 2010-08-11 | 1 | -1/+1 |
| | |||||
* | Introduced CPlusPlus::Template and process the template declarations. | Roberto Raggi | 2010-08-11 | 1 | -0/+3 |
| | |||||
* | Merged ScopedSymbol and Scope. | Roberto Raggi | 2010-08-11 | 1 | -49/+31 |
| | |||||
* | The method enclosingSymbol() should always return a ScopedSymbol. | Roberto Raggi | 2010-08-11 | 1 | -1/+1 |
| | |||||
* | Use Prototype instead of Function. | Roberto Raggi | 2010-08-05 | 1 | -3/+3 |
| | |||||
* | Moved startOffset/endOffset from Symbol to Scope. | Erik Verbruggen | 2010-07-16 | 1 | -17/+1 |
| | |||||
* | Recursive definition of CPlusPlus::QualifiedNameId. | Roberto Raggi | 2010-07-12 | 1 | -55/+9 |
| | | | | Done-with: Erik Verbruggen | ||||
* | Added support for the GCC "unavailable" attribute. | Erik Verbruggen | 2010-05-26 | 1 | -1/+9 |
| | |||||
* | Check for valid translation units. | Roberto Raggi | 2010-05-10 | 1 | -8/+7 |
| | |||||
* | Removed deprecated (and unsafe) methods. | Roberto Raggi | 2010-05-10 | 1 | -54/+15 |
| | |||||
* | Introduced Symbol::copy(otherSymbol) and removed some deprecated code. | Roberto Raggi | 2010-05-10 | 1 | -2/+25 |
| | |||||
* | Store the Control. | Roberto Raggi | 2010-05-10 | 1 | -8/+3 |
| | | | | | | | It seems that storing the TranslationUnit together with the Symbol was a bad idea. Unfortunately, we release TranslationUnit(s) as soon as we can, but we keep the Control around. So using the Control is definitely safer. | ||||
* | More work on template instantiation. | Roberto Raggi | 2010-05-10 | 1 | -0/+6 |
| | |||||
* | Introduce Namespace aliases and store the TranslationUnit instead of the ↵ | Roberto Raggi | 2010-05-05 | 1 | -3/+8 |
| | | | | Control. | ||||
* | Added __attribute__ visiting, and storing of the deprecated attr. | Erik Verbruggen | 2010-03-23 | 1 | -0/+6 |
| | |||||
* | Long live the king! | hjk | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Introduced TypenameArgument. | Roberto Raggi | 2009-12-08 | 1 | -0/+3 |
| | |||||
* | Use const names. | Roberto Raggi | 2009-12-01 | 1 | -24/+24 |
| | |||||
* | Use const literals. | Roberto Raggi | 2009-12-01 | 1 | -8/+8 |
| | |||||
* | Cleanup | Roberto Raggi | 2009-11-23 | 1 | -1/+0 |
| | |||||
* | Added symbols for property declarations. | Erik Verbruggen | 2009-11-11 | 1 | -1/+2 |
| | |||||
* | Added scope calculation for Objective-C classes. | Erik Verbruggen | 2009-11-11 | 1 | -0/+12 |
| | |||||
* | 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. | ||||
* | Check the scope of class and fwd-class declarations | Roberto Raggi | 2009-10-13 | 1 | -0/+8 |
| | |||||
* | long live the king | hjk | 2009-08-14 | 1 | -1/+1 |
| | |||||
* | Fixed semantic checks for Objective-C methods and fast-enumeration. | Erik Verbruggen | 2009-08-05 | 1 | -0/+3 |
| | |||||
* | Compile the C++ parser library with Sun CC 5.9. | Thiago Macieira | 2009-08-03 | 1 | -1/+1 |
| | | | | | | | | | | | | 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. | ||||
* | Improved ObjC parsing, and added semantic checks. | Erik Verbruggen | 2009-07-28 | 1 | -0/+12 |
| | |||||
* | Update license headers and sales contact details. | Jason McDonald | 2009-06-17 | 1 | -2/+2 |
| | | | | Reviewed-by: Trust Me | ||||
* | typo | Roberto Raggi | 2009-06-03 | 1 | -2/+2 |
| | |||||
* | Added Symbol::enclosingNamespaceScope(), Symbol::enclosingClassScope(), and ↵ | Roberto Raggi | 2009-06-03 | 1 | -0/+56 |
| | | | | so on... | ||||
* | Introduced Name::identifier(). | Roberto Raggi | 2009-05-28 | 1 | -0/+8 |
| | | | | Name::identifier() returns the identifier used to declare the name. | ||||
* | Fixed the signature of Symbol::getPosition() & co. | Roberto Raggi | 2009-03-31 | 1 | -3/+3 |
| | |||||
* | Introduced startOffset(), endOffset(), getPosition(), getStartPosition(), ↵ | Roberto Raggi | 2009-03-31 | 1 | -0/+23 |
| | | | | and getEndPosition(). | ||||
* | Ignore the symbol's column for generated symbols (at least for now). | Roberto Raggi | 2009-03-04 | 1 | -4/+15 |
| | |||||
* | Context-sensitive highlighting. | Roberto Raggi | 2009-03-03 | 1 | -7/+11 |
| | |||||
* | Fixes: change file license headers to include LGPL | hjk | 2009-02-25 | 1 | -21/+17 |
| | |||||
* | Introduced support for forward class declarations. | Roberto Raggi | 2009-02-16 | 1 | -0/+3 |
| |