<?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: TypeScript for ActionScript Developers	</title>
	<atom:link href="https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Tue, 02 Jul 2013 18:02:26 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: First impressions about Typescript, the new authoring tool from Microsoft &#124; hellopixel.net		</title>
		<link>https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-245096</link>

		<dc:creator><![CDATA[First impressions about Typescript, the new authoring tool from Microsoft &#124; hellopixel.net]]></dc:creator>
		<pubDate>Tue, 04 Dec 2012 15:35:06 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=3328#comment-245096</guid>

					<description><![CDATA[[...] TypeScript for ActionScript Developers &#8211; back-to-back comparison with AS2/AS3 [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] TypeScript for ActionScript Developers &#8211; back-to-back comparison with AS2/AS3 [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: From AS3 to TypeScript &#124; Jesse Freeman		</title>
		<link>https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-244840</link>

		<dc:creator><![CDATA[From AS3 to TypeScript &#124; Jesse Freeman]]></dc:creator>
		<pubDate>Mon, 22 Oct 2012 09:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=3328#comment-244840</guid>

					<description><![CDATA[[...] detailed explanation of how TypeScript works, I suggest you check out Jesse Wardenâ€<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s excellent post on it. I also wanted to thank Richard Davey for pointing me in the right direction and answering my [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] detailed explanation of how TypeScript works, I suggest you check out Jesse Wardenâ€™s excellent post on it. I also wanted to thank Richard Davey for pointing me in the right direction and answering my [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: TypeScript for ActionScript Developers &#124; Software Consultant â€“ Jesse Warden &#171; eaflash		</title>
		<link>https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-244806</link>

		<dc:creator><![CDATA[TypeScript for ActionScript Developers &#124; Software Consultant â€“ Jesse Warden &#171; eaflash]]></dc:creator>
		<pubDate>Sat, 20 Oct 2012 09:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=3328#comment-244806</guid>

					<description><![CDATA[[...] on jessewarden.com Share this:TwitterFacebookLike this:LikeBe the first to like [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] on jessewarden.com Share this:TwitterFacebookLike this:LikeBe the first to like [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: aYo		</title>
		<link>https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-244800</link>

		<dc:creator><![CDATA[aYo]]></dc:creator>
		<pubDate>Sat, 20 Oct 2012 08:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=3328#comment-244800</guid>

					<description><![CDATA[thanx for the heads up Jesse.]]></description>
			<content:encoded><![CDATA[<p>thanx for the heads up Jesse.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-244758</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Wed, 17 Oct 2012 20:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=3328#comment-244758</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-244739&quot;&gt;Nigel&lt;/a&gt;.

Another is when dealing with global variables people put on window. Instead of going window.logger, say in the case of &lt;a href=&quot;http://log4javascript.org/&quot; rel=&quot;nofollow&quot;&gt;log4javascript&lt;/a&gt;, you can instead just use logger since it&#039;s global. HOWEVER, in larger applications where you&#039;re dealing with race conditions, say some Backbone View&#039;s expecting to have references to Models that haven&#039;t been instantiated yet... you can safely test for those globals via typeof and fall back with logging statements in production code. If you don&#039;t, you&#039;ll get a null pointer.

Seems benign, but it&#039;s not when refactoring spaghetti code that you want to ensure doesn&#039;t break one thing when you fix another.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://jessewarden.com/2012/10/typescript-for-actionscript-developers.html/comment-page-1#comment-244739">Nigel</a>.</p>
<p>Another is when dealing with global variables people put on window. Instead of going window.logger, say in the case of <a href="http://log4javascript.org/" rel="nofollow">log4javascript</a>, you can instead just use logger since it&#8217;s global. HOWEVER, in larger applications where you&#8217;re dealing with race conditions, say some Backbone View&#8217;s expecting to have references to Models that haven&#8217;t been instantiated yet&#8230; you can safely test for those globals via typeof and fall back with logging statements in production code. If you don&#8217;t, you&#8217;ll get a null pointer.</p>
<p>Seems benign, but it&#8217;s not when refactoring spaghetti code that you want to ensure doesn&#8217;t break one thing when you fix another.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
