[llvm-bugs] [Bug 37641] New: Autocomletion doesn't suggest member functions in lambda capturing this
    via llvm-bugs 
    llvm-bugs at lists.llvm.org
       
    Thu May 31 07:08:11 PDT 2018
    
    
  
https://bugs.llvm.org/show_bug.cgi?id=37641
            Bug ID: 37641
           Summary: Autocomletion doesn't suggest member functions in
                    lambda capturing this
           Product: clang
           Version: 6.0
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: libclang
          Assignee: unassignedclangbugs at nondot.org
          Reporter: yanp.bugz at gmail.com
                CC: klimek at google.com, llvm-bugs at lists.llvm.org
I'm using cquery language server, which is based on libclang. It has
autocompletion feature. Exaple which fails:
struct Foo {
        void fooo(){}
        void barr() {
                auto lam = [this] {
                        fooo // completion here (fooo method is not suggested)
                };
        }
};
Original issue:
https://github.com/cquery-project/cquery/issues/696
-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20180531/cc7dce38/attachment.html>
    
    
More information about the llvm-bugs
mailing list