[ 
https://issues.apache.org/jira/browse/THRIFT-2942?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284570#comment-14284570
 ] 

Hudson commented on THRIFT-2942:
--------------------------------

SUCCESS: Integrated in Thrift #1430 (See 
[https://builds.apache.org/job/Thrift/1430/])
THRIFT-2942 CSharp generate invalid code for property named read or write 
(jensg: rev ce36aac5916ec02bf5b5a0be0684c079e797d000)
* compiler/cpp/src/generate/t_csharp_generator.cc
* test/NameConflictTest.thrift


> CSharp generate invalid code for property named read or write
> -------------------------------------------------------------
>
>                 Key: THRIFT-2942
>                 URL: https://issues.apache.org/jira/browse/THRIFT-2942
>             Project: Thrift
>          Issue Type: Bug
>          Components: C# - Compiler
>    Affects Versions: 0.9.2, 1.0
>            Reporter: Luca Sacchi
>            Assignee: Jens Geyer
>             Fix For: 0.9.3
>
>         Attachments: 
> THRIFT-2942-CSharp-generate-invalid-code-for-propert.patch
>
>
> C# generator will produce invalid code for this
> struct CsFail {
> 1: optional bool read
> 2: optional bool write
> }
> this will generate code that that will not compile, due to name clash between 
> :
>   public bool Read
>   {
>     get
>     {
>       return _read;
>     }
>     set
>     {
>       __isset.@read = true;
>       this._read = value;
>     }
>   }
> and Read method implementation
> public void Read (TProtocol iprot)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to