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

NameValueComment
SelLoc_NonStandard0Non-standard.
SelLoc_StandardNoSpace1For 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_StandardWithSpace2For 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;