Closed gavinking closed 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.
setFoo(x)
foo = x
Isn't this same as #3 ?
Yes, sure, of course. Sorry.
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 assignmentsfoo = x
.