Age | Commit message (Expand) | Author |
2010-05-01 | It turns out that basically every caller to RequireCompleteDeclContext | John McCall |
2010-04-23 | Recommit my change to how C++ does elaborated type lookups, now with | John McCall |
2010-04-23 | Revert "C++ doesn't really use "namespaces" for different kinds of names the ... | Daniel Dunbar |
2010-04-23 | C++ doesn't really use "namespaces" for different kinds of names the same | John McCall |
2010-04-21 | Rework the Parser-Sema interaction for Objective-C message | Douglas Gregor |
2010-04-21 | Overhaul the AST representation of Objective-C message send | Douglas Gregor |
2010-04-16 | Eliminate the ForceRValue parameter to Sema::AddOverloadCandidate | Douglas Gregor |
2010-04-15 | Feed proper source-location information into Sema::LookupSingleResult, | Douglas Gregor |
2010-04-08 | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin |
2010-04-07 | Implement code completion for Objective-C method declarations and | Douglas Gregor |
2010-04-06 | When code completion produces an overload set as its results (e.g., | Douglas Gregor |
2010-04-06 | Do not produce semicolons at the end of code-completion results | Douglas Gregor |
2010-04-06 | Only prove macros as code-completion results when we're in a case | Douglas Gregor |
2010-04-06 | When sending a message to "id", apply some heuristics to try to narrow | Douglas Gregor |
2010-04-06 | Make code-completion for Objective-C message sends to "id" work in the | Douglas Gregor |
2010-04-06 | Implement support for code completion of an Objective-C message send to | Douglas Gregor |
2010-04-05 | Extend the type printing policy to allow one to turn off the printing | Douglas Gregor |
2010-03-19 | Remember the "found declaration" for an overload candidate, which is the | John McCall |
2010-03-11 | Split C++ friend declarations into their own header/implementation file. | John McCall |
2010-03-01 | Keep an explicit stack of function and block scopes, each element of | Douglas Gregor |
2010-02-18 | Add some spacing in the code-completion results for a return statement | Douglas Gregor |
2010-02-08 | Thread a source location into the template-argument deduction routines. There | John McCall |
2010-02-03 | Implement the lvalue-to-rvalue conversion where needed. The | Douglas Gregor |
2010-01-26 | Pass access specifiers around in overload resolution. | John McCall |
2010-01-21 | Teach code-completion to deal with calls to functions without prototypes. | Douglas Gregor |
2010-01-14 | Switch a few callers of MaybeAddResult over to AddResult, when the | Douglas Gregor |
2010-01-14 | Switch code-completion's ivar lookup over to LookupVisibleDecls, | Douglas Gregor |
2010-01-14 | Start migrating code-completion results from | Douglas Gregor |
2010-01-14 | Switch the remaining code completions over to LookupVisibleDecls, | Douglas Gregor |
2010-01-14 | Move code completion for qualified name lookup (foo::) to | Douglas Gregor |
2010-01-14 | Eliminate the code-completion-specifier CollectLookupResults in favor | Douglas Gregor |
2010-01-14 | Simplify the code-completion logic for nested-name-specifiers: rather | Douglas Gregor |
2010-01-14 | When providing completions for a member access expression in C++, | Douglas Gregor |
2010-01-14 | Switch code-completion for ordinary names over to the new(ish) | Douglas Gregor |
2010-01-14 | More refactoring of ResultBuilder::MaybeAddResult. No intended | Douglas Gregor |
2010-01-14 | Refactor the "is this declaration interesting" logic in | Douglas Gregor |
2010-01-13 | Banish the notion of a "rank" for code-completion results, since we | Douglas Gregor |
2010-01-13 | Improve the sorting of code-completion results. We now always sort by | Douglas Gregor |
2010-01-13 | Code-completion for @public, @protected, @private, @package. | Douglas Gregor |
2010-01-13 | Whenever completing ordinary names for an Objective-C source, also | Douglas Gregor |
2010-01-12 | Use horizontal-space markers in code-completion results rather than | Douglas Gregor |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2009-12-30 | remove extraneous #include | Chris Lattner |
2009-12-30 | Typo correction for type names when they appear in declarations, e.g., given | Douglas Gregor |
2009-12-25 | Remove some dead variables clang-analyzer found. | Benjamin Kramer |
2009-12-23 | Objective-C methods can be variadic, too. Who knew. | Douglas Gregor |
2009-12-18 | Extend code-completion results with the type of each result | Douglas Gregor |
2009-12-16 | Shift things around so that it's easier to recover from a missing | John McCall |
2009-12-15 | update to match LLVM API change: | Chris Lattner |
2009-12-12 | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin |