summaryrefslogtreecommitdiff
path: root/src/libs/cplusplus/ResolveExpression.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Removed module names from #include directives.Erik Verbruggen2012-02-151-3/+3
| | | | | | | | Getting the #include directives ready for Qt5. This includes the new-project wizards. Change-Id: Ia9261f1e8faec06b9285b694d2b7e9a095978d2b Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
* C++: Type deduction for auto-declared variables implementedFlex Ferrum2012-01-311-4/+91
| | | | | | | | | | | Handled to major cases of 'auto' variable declaration: 1. auto var = someInitializer; 2. Q_FOREACH(auto item, collection) or foreach(auto item, collection) In first case type deducted directly from initializer. If variable has no initializer then corresponded error reported. In second case type deducted from '*collection.begin()' expression. Change-Id: Ie930add1648b99440281ae04d973fd6904bc9e46 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Long live the king!hjk2012-01-261-1/+1
| | | | | Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
* C++: Recognize C++11 nullptrLeandro Melo2011-11-181-0/+7
| | | | | Change-Id: I5b7ac8f9b2137ffe9439ada4ec4aeb9cee8e249d Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* C++: Better resolution for typedef when resolving expr.Leandro Melo2011-11-171-3/+41
| | | | | | | | | | | | Example: struct Bar { int m; }; typedef Bar *pBar; pBar b; b-> // completes correctly now Change-Id: I97cc67579b955fe47c68ab6c35be9a054b6d1be9 Done-by: ckamm Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* all: s/info@qt.nokia.com/qt-info@nokia.com/hjk2011-11-031-2/+2
| | | | | Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
* C++: Fix completion for typedefs for templates in namespaces.Christian Kamm2011-08-191-1/+11
| | | | | | Change-Id: Ib96551388c94731d97eb8f9728613b120b0b86a9 Reviewed-on: http://codereview.qt.nokia.com/3262 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* 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
* Merge branch '2.1'con2010-12-171-7/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/plugins/coreplugin/basemode.cpp src/plugins/coreplugin/basemode.h src/plugins/coreplugin/scriptmanager/qworkbench_wrapper.cpp src/plugins/coreplugin/scriptmanager/qworkbench_wrapper.h src/plugins/debugger/cdb/cdbsymbolpathlisteditor.cpp src/plugins/debugger/debuggeragents.cpp src/plugins/debugger/debuggeruiswitcher.cpp src/plugins/debugger/debuggeruiswitcher.h src/plugins/projectexplorer/buildconfigdialog.cpp src/plugins/qmldesigner/components/propertyeditor/colorwidget.cpp src/plugins/qmldesigner/components/propertyeditor/colorwidget.h src/plugins/qmldesigner/designercore/include/enumeratormetainfo.h src/plugins/qmldesigner/designercore/include/modelutilities.h src/plugins/qmldesigner/designercore/include/nodeinstance.h src/plugins/qmldesigner/designercore/include/propertymetainfo.h src/plugins/qmldesigner/designercore/instances/graphicsscenenodeinstance.cpp src/plugins/qmldesigner/designercore/instances/graphicsscenenodeinstance.h src/plugins/qmldesigner/designercore/instances/graphicsviewnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/graphicswidgetnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/graphicswidgetnodeinstance.h src/plugins/qmldesigner/designercore/instances/nodeinstance.cpp src/plugins/qmldesigner/designercore/instances/qmlviewnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/widgetnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/widgetnodeinstance.h src/plugins/qmldesigner/designercore/metainfo/enumeratormetainfo.cpp src/plugins/qmldesigner/designercore/metainfo/propertymetainfo.cpp src/plugins/qmldesigner/designercore/model/modelutilities.cpp src/plugins/snippets/inputwidget.cpp src/plugins/snippets/snippetscompletion.cpp src/plugins/snippets/snippetscompletion.h src/plugins/snippets/snippetspec.cpp src/plugins/snippets/snippetsplugin.cpp src/plugins/snippets/snippetswindow.cpp src/plugins/snippets/snippetswindow.h src/plugins/texteditor/snippetsparser.cpp src/tools/qml/qmldom/main.cpp tests/manual/trk/runner.cpp tests/manual/trk/trkolddevice.cpp tests/manual/trk/trkolddevice.h tests/manual/trk/trkserver.cpp
| * License headers.con2010-12-171-7/+11
| |
* | Added some initial support for function overloading.Roberto Raggi2010-12-101-31/+71
|/
* Added ResolveExpression::context()Roberto Raggi2010-09-221-0/+4
|
* Merge CPlusPlus::NameId and CPlusPlus::Identifier.Roberto Raggi2010-09-021-2/+2
|
* Renamed Symbol::scope() to Symbol::enclosingScope().Roberto Raggi2010-08-261-6/+6
|
* Get rid of the old Semantic pass.Roberto Raggi2010-08-131-5/+4
|
* Get rid of the #warning directives.Roberto Raggi2010-08-111-3/+4
|
* Get rid of the prefix findOrInsert for the functions in CPlusPlus::Control.Roberto Raggi2010-08-111-2/+2
|
* Removed TemplateParameters.Roberto Raggi2010-08-111-2/+3
|
* Merged ScopedSymbol and Scope.Roberto Raggi2010-08-111-10/+9
|
* Use Prototype instead of Function.Roberto Raggi2010-08-051-1/+1
|
* Introduced IdExpressionAST.Roberto Raggi2010-08-021-0/+6
|
* Sorry this was not supposed to be committed.Roberto Raggi2010-07-201-2/+3
| | | | | | Revert "Revert "Try to fix the type rewriter."" This reverts commit c9bc1e7c64fb73e8148b65dfe7a4521121331efc.
* Revert "Try to fix the type rewriter."Roberto Raggi2010-07-201-3/+2
| | | | This reverts commit 33b19f0210cd6ab1504071912caee91a95515c7c.
* Try to fix the type rewriter.Roberto Raggi2010-07-191-2/+3
|
* Disable the copy of SemanticEnvironment.Roberto Raggi2010-07-191-1/+1
|
* Introduced helpers to rewrite types and names.Roberto Raggi2010-07-161-12/+72
| | | | Done-with: Erik Verbruggen
* Recursive definition of CPlusPlus::QualifiedNameId.Roberto Raggi2010-07-121-12/+8
| | | | Done-with: Erik Verbruggen
* Try to resolve the type in the scope of the declaration.Roberto Raggi2010-07-091-1/+6
|
* Get rid of NumericLiteral::isChar/isWideChar().Roberto Raggi2010-07-011-20/+24
|
* Get rid of PostfixExpressionAST and store the base expression together with ↵Roberto Raggi2010-06-231-18/+6
| | | | the PostfixAST nodes.
* Fixed type resolving for ObjC ptr receiver types in objc_msg_send expressions.Erik Verbruggen2010-06-181-1/+1
|
* Keep the Control around for as long needed.Roberto Raggi2010-06-041-1/+1
|
* Fixed the return type for objc_msg_send expressions.Erik Verbruggen2010-06-041-2/+5
|
* Fixed a couple of null-checks/-returns.Erik Verbruggen2010-06-041-5/+5
|
* Fixed expression resolving for ObjC message send expressions.Erik Verbruggen2010-05-201-23/+12
|
* Deprecate the old template instantiation.Roberto Raggi2010-05-201-3/+3
|
* Renamed classOrNamespace() and lookup/findClassOrNamespace().Roberto Raggi2010-05-141-4/+4
|
* Resolve ambiguous C++-like initilized declarations.Roberto Raggi2010-05-141-2/+4
|
* Reenabled the tooltip.Roberto Raggi2010-05-141-7/+3
|
* Jump at the function's definition.Roberto Raggi2010-05-141-0/+1
|
* Instiate overloads of operator->().Roberto Raggi2010-05-141-3/+16
|
* Check the member access operator before trying to resolve the base expression.Roberto Raggi2010-05-141-9/+10
|
* Oops! use the right base type when searching for overloads of operator->().Roberto Raggi2010-05-141-1/+1
|
* Get rid of deprected method ResolveExpression::resolveBaseExpression().Roberto Raggi2010-05-141-117/+0
|
* Removed ResolveExpression::resolveMember().Roberto Raggi2010-05-141-55/+6
|
* Get rid off resolveMemberExpression().Roberto Raggi2010-05-141-48/+48
|
* Reimplemented resolve base expression.Roberto Raggi2010-05-141-0/+32
|
* Improved LookupItem and get rid of some deprecated code.Roberto Raggi2010-05-141-94/+123
|