The following code shoud throw an Error #1009: Cannot access a property or method of a null object reference:
var label:Label;
label.text = value;
However, it doesn't if it's inside of a setter which is set by MXML data binding:
public function set buggySetter(value:String):void {
var label:Label;
label.text = value; //will fail silently
}
To reproduce this weird behaviour, first, create a simple custom component by extending s:Label:
package {
import spark.components.Label;
public class BuggyLabel extends Label {
public function set buggySetter(value:String):void {
var label:Label;
label.text = value; //will fail silently
}
}
}
Sectond, add BuggyLabel to an Application and bind buggySetter:
<fx:Script>
<![CDATA[
[Bindable]
public var foo:String = 'NULL has no properties';
]]>
</fx:Script>
<local:BuggyLabel buggySetter="{foo}"/>
Why does this app fail silently?