[PATCH] D27053: [CodeCompletion] Provide Objective-C class property completion results

Manman Ren via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Dec 7 09:28:01 PST 2016


manmanren accepted this revision.
manmanren added a comment.
This revision is now accepted and ready to land.

LGTM .

Manman



================
Comment at: lib/Sema/SemaCodeComplete.cpp:3763
+        if (!M->getSelector().isUnarySelector() ||
+            M->getReturnType()->isVoidType() || M->isInstanceMethod())
+          continue;
----------------
Can you put a comment here on the conditions?


Repository:
  rL LLVM

https://reviews.llvm.org/D27053





More information about the cfe-commits mailing list