Skip to content
  1. Oct 15, 2010
    • Douglas Gregor's avatar
      When performing typo correction, look through the set of known · 57756eab
      Douglas Gregor authored
      identifiers to determine good typo-correction candidates. Once we've
      identified those candidates, we perform name lookup on each of them
      and the consider the results. 
      
      This optimization makes typo correction > 2x faster on a benchmark
      example using a single typo (NSstring) in a tiny file that includes
      Cocoa.h from a precompiled header, since we are deserializing far less
      information now during typo correction.
      
      There is a semantic change here, which is interesting. The presence of
      a similarly-named entity that is not visible can now affect typo
      correction. This is both good (you won't get weird corrections if the
      thing you wanted isn't in scope) and bad (you won't get good
      corrections if there is a similarly-named-but-completely-unrelated
      thing). Time will tell whether it was a good choice or not.
      
      llvm-svn: 116528
      57756eab
    • Douglas Gregor's avatar
      Make sure that we diagnose invalid qualifiers on friend functions. · c3bbf48f
      Douglas Gregor authored
      llvm-svn: 116527
      c3bbf48f
  2. Oct 14, 2010
  3. Oct 13, 2010
  4. Oct 12, 2010
  5. Oct 11, 2010
    • Douglas Gregor's avatar
      Switch c-index-test from clang_codeComplete() over to · 36e3b5c7
      Douglas Gregor authored
      clang_codeCompleteAt(). This uncovered a few issues with the latter:
      
        - ASTUnit wasn't saving/restoring diagnostic state appropriately between
          reparses and code completions.
        - "Overload" completions weren't being passed through to the client
      
      llvm-svn: 116241
      36e3b5c7
    • Fariborz Jahanian's avatar
      This patch does a few things in the area of objective-c · f3f903a9
      Fariborz Jahanian authored
      properties.
      1. Generates the AST for lexical info. of accessing 
         getter/setter methods using dot-syntax notation.
         This fixes //rdar: //8528170.
      2. Modifes rewriter to handle the AST putout in 1.
      3. Supportes in rewriter ObjCImplicitSetterGetter ASTs.
      
      llvm-svn: 116237
      f3f903a9
  6. Oct 10, 2010
  7. Oct 09, 2010
Loading