ΒΆint clang_Cursor_isDynamicCall(CXCursor C)
int clang_Cursor_isDynamicCall(CXCursor C)
Description
Given a cursor pointing to a C++ method call or an Objective-C message, returns non-zero if the method/message is "dynamic", meaning: For a C++ method: the call is virtual. For an Objective-C message: the receiver is an object instance, not 'super' or a specific class. If the method/message is "static" or the cursor does not point to a method/message, it will return zero.
Declared at: clang/include/clang-c/Index.h:4606
Parameters
- CXCursor C