<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>JavaScript Development Toolkit</title>
	<atom:link href="http://dev.eclipse.org/blogs/jsdt/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.eclipse.org/blogs/jsdt</link>
	<description>Just another Eclipse Committer and Project Blogs weblog</description>
	<pubDate>Tue, 09 Oct 2007 19:23:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Projects and Type Resolution - The Global Scope</title>
		<link>http://dev.eclipse.org/blogs/jsdt/2007/10/03/projects-and-type-resolution-the-global-scope/</link>
		<comments>http://dev.eclipse.org/blogs/jsdt/2007/10/03/projects-and-type-resolution-the-global-scope/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 16:52:21 +0000</pubDate>
		<dc:creator>Bradley Childs</dc:creator>
		
		<category><![CDATA[JSDT Usage]]></category>

		<guid isPermaLink="false">http://dev.eclipse.org/blogs/jsdt/2007/10/03/projects-and-type-resolution-the-global-scope/</guid>
		<description><![CDATA[JSDT manages type resolution and browser compatibility by allowing users to customize a projects Global Scope.
The Global Scope (as it applies to JavaScript) is the super scope which holds all the objects, types and fields accessible to all methods.  Its honestly one of the horrible inefficiencies of JavaScript as just about everything gets pushed [...]]]></description>
			<content:encoded><![CDATA[<p>JSDT manages type resolution and browser compatibility by allowing users to customize a projects Global Scope.</p>
<p>The Global Scope (as it applies to JavaScript) is the super scope which holds all the objects, types and fields accessible to all methods.  Its honestly one of the horrible inefficiencies of JavaScript as just about everything gets pushed into the Global Scope.</p>
<p>JSDT users can customize a projects Global Scope throughout the &#8216;JavaScript Include Path&#8217; page.  Each library is a collection of JavaScript files that prototypes all objects within that library.  (Additional information can be attached to objects with JsDoc. ).  When a library is added to a project, all of the prototype code in each libraries JavaScript files is modeled and placed in the projects Global Scope.  The types, fields and methods are then available for resolution and content completion in <strong>every JavaScript file within the project</strong>  Matter of fact, every JavaScript file sees the Global members of every other JavaScript file within a project (unless you&#8217;ve done some careful tweaking in the Include Path page).</p>
<p>A piece of JS code running in a browser has access to many of the objects, fields and methods provided by the browser.  The browsers &#8216;Window&#8217; object is an extension of &#8216;Global&#8217; which extends &#8216;Object&#8217;.  Each browser provides different types, fields and methods to almost all of the common objects (and additionally handles these types, fields and methods differently across browsers).  Hence the cross browser compatibility pain points that arise when developing JavaScript.</p>
<p>The JSDT forces browser compatibility by defining and extending ECMA 3 objects through the libraries.  By adding and removing libraries you can nail down the types, functions and fields available in code completion and resolution.  This will help ensure your project supports the objects in specific browsers.</p>
<p>Libraries aren&#8217;t just useful for browsers. They work well for toolkits, or common utility scripts across a site.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.eclipse.org/blogs/jsdt/2007/10/03/projects-and-type-resolution-the-global-scope/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello Everyone</title>
		<link>http://dev.eclipse.org/blogs/jsdt/2007/09/28/hello-world/</link>
		<comments>http://dev.eclipse.org/blogs/jsdt/2007/09/28/hello-world/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 21:25:30 +0000</pubDate>
		<dc:creator>Bradley Childs</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[First post!
I&#8217;m a developer on the JavaScript Development Toolkit
(http://wiki.eclipse.org/JSDT).
If your unfamiliar, the JSDT is a rewrite of the JDT in Eclipse to make it work with JavaScript. This means you get most of the Java language features in Eclipse, but for JavaScript instead of Java.
As many of you are aware, the available JavaScript tooling is [...]]]></description>
			<content:encoded><![CDATA[<p>First post!</p>
<p>I&#8217;m a developer on the JavaScript Development Toolkit<br />
(http://wiki.eclipse.org/JSDT).</p>
<p>If your unfamiliar, the JSDT is a rewrite of the JDT in Eclipse to make it work with JavaScript. This means you get most of the Java language features in Eclipse, but for JavaScript instead of Java.</p>
<p>As many of you are aware, the available JavaScript tooling is small, and frankly SUCKS.  Our goal is to add professional tools, that treat JavaScript like a real language.  I&#8217;ll be posting comments and changes as time progresses.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.eclipse.org/blogs/jsdt/2007/09/28/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
