aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema
AgeCommit message (Expand)Author
2009-11-18Code completion after @property, providing the names of forward-declared prop...Douglas Gregor
2009-11-18Code completion for Objective-C properly listsDouglas Gregor
2009-11-18Make CreateOverloadedUnaryOp build the correct node for postinc/dec operators.Eli Friedman
2009-11-18Simplify ActOnPostfixUnaryOp.Eli Friedman
2009-11-18Incremental progress on using declarations. Split UnresolvedUsingDecl intoJohn McCall
2009-11-18Code completion for member accesses that involve Objective-C properties and i...Douglas Gregor
2009-11-18Eliminate some completely-redundant lookupsDouglas Gregor
2009-11-18PR5520: Make sure to check whether the base type is complete before looking forEli Friedman
2009-11-18Add SourceLocations to ObjCClassDecl for the class identifiers referenced by ...Ted Kremenek
2009-11-18Finish code completion for Objective-C message sendsDouglas Gregor
2009-11-17Rename Objective-C message send completion functions to indicate that we're r...Douglas Gregor
2009-11-17Refactor code-completion support for message sends, collecting theDouglas Gregor
2009-11-17Pass source locations of identifiers referenced by @class through Action::Act...Ted Kremenek
2009-11-17Do not register ObjCInterfaceDecls implicitly created by @class in theTed Kremenek
2009-11-17Improve location information when adding conversion candidatesDouglas Gregor
2009-11-17Start support of weak_import objective-c classes.Fariborz Jahanian
2009-11-17Adjust format attribute index for implicit object arguments. Fixes PR5521.Sebastian Redl
2009-11-17Implement code completion for Objective-C message sends to "super".Douglas Gregor
2009-11-17Fixes a typo, reported by Doug.Fariborz Jahanian
2009-11-17Augment code-completion results to provide argument names andDouglas Gregor
2009-11-17StringRef'ify CodeCompletionStringDouglas Gregor
2009-11-17Temporarily unbreak the clang-on-llvm tests. :) Not going to fix unresolvedJohn McCall
2009-11-17Store "sugared" decls in LookupResults (i.e. decl aliases like using declarat...John McCall
2009-11-17Silence some warnings produced by Clang, and add a missing headerDouglas Gregor
2009-11-17Implement template instantiation for using directives, which is dead simple.Douglas Gregor
2009-11-17Instead of hanging a using declaration's target decls directly off the using John McCall
2009-11-17Require the object type of a member access expression ("." or "->") toDouglas Gregor
2009-11-17Unify the way destructor epilogues are generated for synthesized and regular ...Anders Carlsson
2009-11-17Carry lookup configuration throughout lookup on the LookupResult. GiveJohn McCall
2009-11-17PR5526: Make sure to set the right cast kinds for the inserted implicit casts.Eli Friedman
2009-11-16Simplify the AST a bit by skipping creating member initializers for membersEli Friedman
2009-11-16First part of changes to eliminate problems with cv-qualifiers andDouglas Gregor
2009-11-16Repair broken FindCompositePointerType. Correct early termination condition. ...Sebastian Redl
2009-11-16Fix PR5488: special-case the overloaded arrow operator so that we don't try toEli Friedman
2009-11-16Handle case of missing '@end' in implementation contextFariborz Jahanian
2009-11-16Set the cast kind for a few more code paths.Eli Friedman
2009-11-15Make sure that virtual destructors have delete operators.Anders Carlsson
2009-11-15Deallocation functions must also be static.Anders Carlsson
2009-11-15allocation functions are always static.Anders Carlsson
2009-11-15Factor finding a deallocation function for a record type out into a separate ...Anders Carlsson
2009-11-15If we find a deallocation function in the class scope, but it is a placement ...Anders Carlsson
2009-11-15When performing a static downcast as part of a static_cast, make sureDouglas Gregor
2009-11-15Don't gratuitously mark the default constructors of base or member initialize...Douglas Gregor
2009-11-15When adding the underlying declaration of a decl to a lookup-resultsDouglas Gregor
2009-11-15When looking for operator() to type-check a call to an object of classDouglas Gregor
2009-11-15If any errors have occurred by the time we hit the end of a function body, cl...Douglas Gregor
2009-11-14Always build a builtin operator expression for the __extension__ unary operator.Anders Carlsson
2009-11-14- Have TryStaticImplicitCast set the cast kind to NoOp when binding a referen...Sebastian Redl
2009-11-14PR5462: Don't run off the edge of the argument array for vararg handlingEli Friedman
2009-11-14Fix for PR5489: don't skip the complete type requrirement for variableEli Friedman