enum SymbolGraphSerializer::RelationshipKind
Description
The kind of a relationship between two symbols.
Declared at: clang/include/clang/ExtractAPI/Serialization/SymbolGraphSerializer.h:80
Enumerators
Name | Value | Comment |
---|---|---|
MemberOf | 0 | The source symbol is a member of the target symbol. For example enum constants are members of the enum, class/instance methods are members of the class, etc. |
InheritsFrom | 1 | The source symbol is inherited from the target symbol. |
ConformsTo | 2 | The source symbol conforms to the target symbol. For example Objective-C protocol conformances. |