Displaying 1 result from an estimated 1 matches for "currentparamet".
Did you mean:
currentparameter
2012 Aug 16
1
[LLVMdev] Question on C++ code completion - function parameter list
...mpletion-at=x.cpp:9:10 -x c++ -fsyntax-only -x.cpp"
Where:
- "9:10" is the line:column number just after the parenthesis behind the function name.
If the function is a C function, "c-index-test" returns a function parameter list for the function with the node 'CurrentParameter' which is important for code completion:
NotImplemented:{ResultType int}{Text geti}{LeftParen (}{CurrentParameter int i}{Comma , }{Text char c}{RightParen )} (1)
But if I use the same command line asking for the C++ function parameter list, the expected result is not returned.
Hereafter is th...