diff options
| author | Fariborz Jahanian <fjahanian@apple.com> | 2013-07-05 20:46:03 +0000 |
|---|---|---|
| committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-07-05 20:46:03 +0000 |
| commit | 266926d85ea7a6ed91c13b83095938325d4da179 (patch) | |
| tree | d905d99b6751ad199605ad0661146c8c10ffe444 /clang/lib/Edit/RewriteObjCFoundationAPI.cpp | |
| parent | e283e1958afb9c3eefeb142c4383de3286786150 (diff) | |
| download | bcm5719-llvm-266926d85ea7a6ed91c13b83095938325d4da179.tar.gz bcm5719-llvm-266926d85ea7a6ed91c13b83095938325d4da179.zip | |
[objc migrator]: More knobs to do migration to
use of objc's properties.
llvm-svn: 185724
Diffstat (limited to 'clang/lib/Edit/RewriteObjCFoundationAPI.cpp')
| -rw-r--r-- | clang/lib/Edit/RewriteObjCFoundationAPI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/Edit/RewriteObjCFoundationAPI.cpp b/clang/lib/Edit/RewriteObjCFoundationAPI.cpp index f4206fbd8f4..9af53037eac 100644 --- a/clang/lib/Edit/RewriteObjCFoundationAPI.cpp +++ b/clang/lib/Edit/RewriteObjCFoundationAPI.cpp @@ -355,6 +355,12 @@ bool edit::rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg, return false; } +bool edit::rewriteToObjCProperty(const ObjCMethodDecl *Getter, + const ObjCMethodDecl *Setter, + const NSAPI &NS, Commit &commit) { + return false; +} + /// \brief Returns true if the immediate message arguments of \c Msg should not /// be rewritten because it will interfere with the rewrite of the parent /// message expression. e.g. |

