What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline ) - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T11:19:52Zhttp://stackoverflow.com/feeds/question/373395http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/373395/what-does-this-this-actionscript-syntax-mean-syntax-for-returning-objects-inli1What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline ) Tong Wang2008-12-17T01:26:31Z2008-12-17T03:53:26Z
<p>Hi,</p>
<p>I am a Java programmer and need to work on a Flex/ActionScript project right now. I got an example of using ITreeDataDesriptor from Flex 3 Cookbook, but there is one line of actionscript code that's hard for me to understand. I appreciate if someone could explain this a little further. </p>
<pre><code>public function getData(node:Object, model:Object=null):Object
{
if (node is Office) {
return {children:{label:node.name, label:node.address}};
}
}
</code></pre>
<p>The part that I didn't understand was "{children:{label:node.name, label:node.address}}". Office is simply a value object that contains two String properties: name and address.</p>
http://stackoverflow.com/questions/373395/what-does-this-this-actionscript-syntax-mean-syntax-for-returning-objects-inli/373423#3734231Answer by Luke for What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline ) Luke2008-12-17T01:50:45Z2008-12-17T01:50:45Z<p>I think in Java you would call that a map or an associative array. In Javascript and Actionscript you can say this to create an object with certain properties:</p>
<pre><code>var myobject = {
'prop1': 100,
'prop2': {
'a': 1
}
}
trace( myobject.prop1 ); // 100
trace( myobject.prop2.a ); // 1
</code></pre>
<p>In your example it's just returned as a nameless object.</p>
http://stackoverflow.com/questions/373395/what-does-this-this-actionscript-syntax-mean-syntax-for-returning-objects-inli/373426#3734261Answer by Robert Gould for What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline ) Robert Gould2008-12-17T01:51:42Z2008-12-17T01:51:42Z<pre><code>return {children:{label:node.name, label:node.address}};
</code></pre>
<p>Means you are returning a new Object. The {} are the Object's constructor, and in this case its an Anonymous object.</p>
http://stackoverflow.com/questions/373395/what-does-this-this-actionscript-syntax-mean-syntax-for-returning-objects-inli/373448#3734480Answer by Tong Wang for What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline ) Tong Wang2008-12-17T02:00:38Z2008-12-17T02:00:38Z<p>Thank you both for the quick response. So if I understand your explanations correctly, the return statement is returning an anonymous object, and this object has only one property named "children", which is again an associative array - ok, here is the part I don't quite understand still, it seems that both properties in this array are named "label", is this allowed?</p>
http://stackoverflow.com/questions/373395/what-does-this-this-actionscript-syntax-mean-syntax-for-returning-objects-inli/373611#3736112Answer by aaaidan for What does this this ActionScript syntax mean? ( Syntax for returning Objects Inline ) aaaidan2008-12-17T03:53:26Z2008-12-17T03:53:26Z<p>The following return expression (modified from the question) ...</p>
<pre><code>return {children:{label:node.name, body:node.address}}
</code></pre>
<p>... is functionally equivalent to this code ...</p>
<pre><code>var obj:Object = new Object();
obj.children = new Object();
obj.children.label = node.name;
obj.children.body = node.address;
return obj;
</code></pre>
<p>The anonymous object returned in the question code complicates matters because it defines a property twice. In that case, the first declaration is used, and the subsequent one(s) are ignored. No compile-time or runtime error is thrown.</p>