Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix crash when using archaic protocol, rdar://10238337 | Argyrios Kyrtzidis | 2011-10-05 | 1 | -1/+4 |
| | | | | llvm-svn: 141215 | ||||
* | Allow getting all source locations of selector identifiers in a ObjCMethodDecl. | Argyrios Kyrtzidis | 2011-10-03 | 1 | -0/+23 |
| | | | | | | | | | | | | | Instead of always storing all source locations for the selector identifiers we check whether all the identifiers are in a "standard" position; "standard" position is -Immediately before the arguments: -(id)first:(int)x second:(int)y; -With a space between the arguments: -(id)first: (int)x second: (int)y; -For nullary selectors, immediately before ';': -(void)release; In such cases we infer the locations instead of storing them. llvm-svn: 140989 | ||||
* | Allow getting all source locations of selector identifiers in a ObjCMessageExpr. | Argyrios Kyrtzidis | 2011-10-03 | 1 | -0/+102 |
Instead of always storing all source locations for the selector identifiers we check whether all the identifiers are in a "standard" position; "standard" position is -Immediately before the arguments: [foo first:1 second:2] -With a space between the arguments: [foo first: 1 second: 2] -For nullary selectors, immediately before ']': [foo release] In such cases we infer the locations instead of storing them. llvm-svn: 140987 |