Displaying 1 result from an estimated 1 matches for "dfdemodatamodelon".
Did you mean:
dfdemodatamodelone
2013 Jul 22
0
[LLVMdev] Libclang get class name from DeclRefExpr
Hi guys,
I am trying to extract the class name of a parameter to a method call
in objective-C. The code I am parsing is:
- (void)testAddConcreteDataModel:(DFDemoDataModelOne*)helpmeh {
[self.dataModels addObject:helpmeh];
}
And the result I need is the type of class of helpmeh, which is
"DFDemoDataModelOne".
So far I have the following code, which outputs:
"[(DFDataModelContainer).dataModels addObject:helpmeh]"
if (cursor.kind == CXCu...