summaryrefslogtreecommitdiff
path: root/src/libs/cplusplus/ResolveExpression.cpp
Commit message (Collapse)AuthorAgeFilesLines
* It's 2011 now.con2011-01-121-1/+1
|
* License headers.con2010-12-171-7/+11
|
* 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
|
* Removed deprecated code.Roberto Raggi2010-05-141-9/+1
|
* Store the declaration (if any) associated with the LookupItem.Roberto Raggi2010-05-111-14/+10
|
* Split LookupContext::lookup() in lookup() and find().Roberto Raggi2010-05-111-4/+4
| | | | | lookup() searches for symbols in the given binding and the enclosing scopes, while find() searches for symbols only in the given binding.
* Oops! removed debug statements.Roberto Raggi2010-05-101-28/+1
|
* Use the last visible symbol if available.Roberto Raggi2010-05-101-2/+2
|
* More work on template instantiation.Roberto Raggi2010-05-101-0/+46
|
* Refactor a bit the lookup, it should simplify template instantiation.Roberto Raggi2010-05-101-41/+3
|
* Enable lazy lookup.Roberto Raggi2010-05-051-2/+2
|
* Try to use the new LookupContext.Roberto Raggi2010-05-051-243/+114
|
* Deprecated the current LookupContext.Roberto Raggi2010-05-051-5/+5
|
* Fixed `look at symbol under cursor' when symbol is a Qt method (e.g. a signal).Roberto Raggi2010-03-291-2/+26
| | | | Done with: erikv