eclipse-archived / ceylon.tool.converter.java2ceylon

Java to Ceylon converter
Apache License 2.0
10 stars 7 forks source link

treat calls to setter methods as assignment #20

Closed gavinking closed 8 years ago

gavinking commented 8 years ago

Obviously this not always going to be correct, since setters with no matching getter are treated by our model loader as methods, not as attributes, but I think it's probably better if we transform calls of form setFoo(x) as assignments foo = x.

rohitmohan96 commented 8 years ago

Isn't this same as #3 ?

gavinking commented 8 years ago

Yes, sure, of course. Sorry.