<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Happy holidays!</title>
	<atom:link href="http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/</link>
	<description>References and declarations in Flex compiler  development</description>
	<lastBuildDate>Thu, 20 Jan 2011 23:53:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: David Moles</title>
		<link>http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/comment-page-1/#comment-14744</link>
		<dc:creator>David Moles</dc:creator>
		<pubDate>Tue, 05 Feb 2008 09:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://davidzuckerman.com/adobe/2007/12/26/happy-holidays/#comment-14744</guid>
		<description>Okay, I found the bug DB via James Ward&#039;s blog. I&#039;ll leave you alone. :)</description>
		<content:encoded><![CDATA[<p>Okay, I found the bug DB via James Ward&#8217;s blog. I&#8217;ll leave you alone. <img src='http://www.markingoccurrences.com/adobe/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Moles</title>
		<link>http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/comment-page-1/#comment-14363</link>
		<dc:creator>David Moles</dc:creator>
		<pubDate>Fri, 25 Jan 2008 11:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://davidzuckerman.com/adobe/2007/12/26/happy-holidays/#comment-14363</guid>
		<description>More specifically (sorry, didn&#039;t have FlexBuilder installed on this box): &quot;1049: Illegal assignment to a variable specified as constant.&quot;

This happens even if I copy the code from the &lt;a href=&quot;http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&amp;file=03_Language_and_Syntax_160_13.html&quot; rel=&quot;nofollow&quot;&gt;Flex 2.01 docs&lt;/a&gt; (see under &quot;Constants&quot;).</description>
		<content:encoded><![CDATA[<p>More specifically (sorry, didn&#8217;t have FlexBuilder installed on this box): &#8220;1049: Illegal assignment to a variable specified as constant.&#8221;</p>
<p>This happens even if I copy the code from the <a href="http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&amp;file=03_Language_and_Syntax_160_13.html" rel="nofollow">Flex 2.01 docs</a> (see under &#8220;Constants&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Moles</title>
		<link>http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/comment-page-1/#comment-14362</link>
		<dc:creator>David Moles</dc:creator>
		<pubDate>Fri, 25 Jan 2008 10:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://davidzuckerman.com/adobe/2007/12/26/happy-holidays/#comment-14362</guid>
		<description>&quot;Illegal assignment.&quot; The problem with initializing it in the variable declaration is that I&#039;d like to use a constructor parameter for the value -- it&#039;s not a static class constant, it&#039;s just an instance variable that should only be set once, at construction time.</description>
		<content:encoded><![CDATA[<p>&#8220;Illegal assignment.&#8221; The problem with initializing it in the variable declaration is that I&#8217;d like to use a constructor parameter for the value &#8212; it&#8217;s not a static class constant, it&#8217;s just an instance variable that should only be set once, at construction time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.z</title>
		<link>http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/comment-page-1/#comment-14339</link>
		<dc:creator>david.z</dc:creator>
		<pubDate>Thu, 24 Jan 2008 19:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://davidzuckerman.com/adobe/2007/12/26/happy-holidays/#comment-14339</guid>
		<description>What compiler error are you seeing?  I would try to initialize it in the variable declaration expression</description>
		<content:encoded><![CDATA[<p>What compiler error are you seeing?  I would try to initialize it in the variable declaration expression</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Moles</title>
		<link>http://www.markingoccurrences.com/adobe/2007/12/26/happy-holidays/comment-page-1/#comment-14329</link>
		<dc:creator>David Moles</dc:creator>
		<pubDate>Thu, 24 Jan 2008 11:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://davidzuckerman.com/adobe/2007/12/26/happy-holidays/#comment-14329</guid>
		<description>Hey, David, this is totally off topic, but do you know if it&#039;s possible to initialize a const field in the constructor of an ActionScript object? (I&#039;m coming from Java and I guess I&#039;m expecting const to act like final, which may be a mistake. But I like immutable objects.) The Flex 2.01 spec says yes, but when I try it in FlexBuilder I get a compilation error.</description>
		<content:encoded><![CDATA[<p>Hey, David, this is totally off topic, but do you know if it&#8217;s possible to initialize a const field in the constructor of an ActionScript object? (I&#8217;m coming from Java and I guess I&#8217;m expecting const to act like final, which may be a mistake. But I like immutable objects.) The Flex 2.01 spec says yes, but when I try it in FlexBuilder I get a compilation error.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

