Alex,

I just wanted to write it that compiled class doesn't contains it [1].
Additionally what is funny - debugger do not stop when generate setter is

ClassA.prototype.set__fieldA = function(value) {
  this._fieldA = value;
};

but it's do work when I have following

ClassA.prototype.set__fieldA = function(value) {
if (this._fieldA != value) {
  this._fieldA = value;
}
};

[1] https://paste.apache.org/gy6N

Piotr



-----
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-development.2333347.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-references-tp58022p58118.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.

Reply via email to