[LLVMbugs] [Bug 14446] New: Code-completion doesn't work inside structure initializer
    bugzilla-daemon at llvm.org 
    bugzilla-daemon at llvm.org
       
    Tue Nov 27 22:57:49 PST 2012
    
    
  
http://llvm.org/bugs/show_bug.cgi?id=14446
             Bug #: 14446
           Summary: Code-completion doesn't work inside structure
                    initializer
           Product: clang
           Version: 3.2
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: -New Bugs
        AssignedTo: unassignedclangbugs at nondot.org
        ReportedBy: dubinin2004 at gmail.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified
This would be great to make code-completion to work inside structure
initializer.
I mean, like that:
    typedef  struct  {
        int  a;
        int  b;
    } T_MyStruct;
    int  main(void)
    {
        T_MyStruct my_struct = {
           .a =0,
           ./*cursor is here. I want to get list of struct members: [int a, int
b]*/
        };
    }
-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
    
    
More information about the llvm-bugs
mailing list