enum SelectorLocationsKind
Description
Whether all locations of the selector identifiers are in a "standard" position.
Declared at: clang/include/clang/AST/SelectorLocationsKind.h:27
Enumerators
Name | Value | Comment |
---|---|---|
SelLoc_NonStandard | 0 | Non-standard. |
SelLoc_StandardNoSpace | 1 | For nullary selectors, immediately before the end: "[foo release]" / "-(void)release;" Or immediately before the arguments: "[foo first:1 second:2]" / "-(id)first:(int)x second:(int)y; |
SelLoc_StandardWithSpace | 2 | For nullary selectors, immediately before the end: "[foo release]" / "-(void)release;" Or with a space between the arguments: "[foo first: 1 second: 2]" / "-(id)first: (int)x second: (int)y; |