Allow getting all source locations of selector identifiers in a ObjCMessageExpr.
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140987 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/ExprObjC.h 73 additions, 8 deletionsinclude/clang/AST/ExprObjC.h
- include/clang/AST/SelectorLocationsKind.h 64 additions, 0 deletionsinclude/clang/AST/SelectorLocationsKind.h
- lib/AST/CMakeLists.txt 1 addition, 0 deletionslib/AST/CMakeLists.txt
- lib/AST/Expr.cpp 62 additions, 43 deletionslib/AST/Expr.cpp
- lib/AST/SelectorLocationsKind.cpp 102 additions, 0 deletionslib/AST/SelectorLocationsKind.cpp
- lib/Sema/SemaExpr.cpp 1 addition, 1 deletionlib/Sema/SemaExpr.cpp
- lib/Sema/TreeTransform.h 10 additions, 6 deletionslib/Sema/TreeTransform.h
- lib/Serialization/ASTReaderStmt.cpp 8 additions, 2 deletionslib/Serialization/ASTReaderStmt.cpp
- lib/Serialization/ASTWriterStmt.cpp 7 additions, 1 deletionlib/Serialization/ASTWriterStmt.cpp
Loading
Please register or sign in to comment