You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Jens Geyer (Jira)" <ji...@apache.org> on 2019/10/10 22:58:00 UTC

[jira] [Closed] (THRIFT-4521) Cocoa compiler produces invalid code for recursive structs

     [ https://issues.apache.org/jira/browse/THRIFT-4521?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jens Geyer closed THRIFT-4521.
------------------------------

> Cocoa compiler produces invalid code for recursive structs
> ----------------------------------------------------------
>
>                 Key: THRIFT-4521
>                 URL: https://issues.apache.org/jira/browse/THRIFT-4521
>             Project: Thrift
>          Issue Type: Bug
>          Components: Cocoa - Compiler
>    Affects Versions: 0.11.0
>            Reporter: Yan Zhulanow
>            Assignee: James E. King III
>            Priority: Major
>             Fix For: 0.13.0
>
>
> {{Source:}}
> {{-------}}
> {{struct Node {}}
>  {{    1: string name;}}
>  {{    2: list<Node> children;}}
>  {{}}}
> {{Generated code (partially, used Thrift 0.11.0):}}
> {{----------}}{{-------}}{{-------}}{{-------}}{{-------}}{{-------}}{{----}}{{-------}}{{----}}{{------}}
> {{@interface Node : NSObject <TBase, NSCoding, NSCopying>}}
> {{@property (strong, nonatomic) NSString * name;}}
>  {{@property (assign, nonatomic) BOOL nameIsSet;}}
>  {{- (void) unsetName;}}
> {{@property (strong, nonatomic) NSMutableArray<Node> * children;}}
>  {{@property (assign, nonatomic) BOOL childrenIsSet;}}
>  {{- (void) unsetChildren;}}
>  
> {{As you can see, NSMutableArray<Node> is not a valid type (NSMutableArray<Node *> * was expected), and the code doesn't compile.}}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)