Rebased against trunk:
objc_migrator_objc_boxable.patch
Description: Binary data
--
AlexDenisov
Software Engineer, http://lowlevelbits.org
> On 05 Dec 2015, at 22:19, John McCall wrote:
>
>> On Dec 5, 2015, at 7:58 AM, AlexDenisov <1101.deb...@gmail.com> wrote:
>> Extend ObjCMigrator to cov
Any updates? :)
--
AlexDenisov
Software Engineer, http://lowlevelbits.org
> On 05 Dec 2015, at 22:19, John McCall wrote:
>
>> On Dec 5, 2015, at 7:58 AM, AlexDenisov <1101.deb...@gmail.com> wrote:
>> Extend ObjCMigrator to cover automatic migration from message sending to
>> boxable literals, e
> On Dec 5, 2015, at 7:58 AM, AlexDenisov <1101.deb...@gmail.com> wrote:
> Extend ObjCMigrator to cover automatic migration from message sending to
> boxable literals, e.g.:
>
> ```before
> typedef struct __attribute__((objc_boxable)) CGRect CGRect;
> /// ...
> CGRect rect;
> [NSValue valueWithBy
Extend ObjCMigrator to cover automatic migration from message sending to
boxable literals, e.g.:
```before
typedef struct __attribute__((objc_boxable)) CGRect CGRect;
/// ...
CGRect rect;
[NSValue valueWithBytes:&rect objCType:@encode(CGRect)];
[NSValue valueWithCGPoint:functionReturningCGPoint()