Welcome to MSDN Blogs Sign in | Join | Help

ECMAScript 3 and beyond - the road to "Harmony"

The current ECMAScript specification was completed in 1999 and certainly needed to be updated to reflect today’s web environment and practices. Some participants in the standards process wanted to use what they thought of as a once-in-a-decade opportunity to make some significant changes that they felt would make the language better. Other participants, including Microsoft, were concerned about the ability of the web to “digest” such large changes and favoured a smaller set of revisions. There were passionate and well thought opinions on both sides of these issues and everybody seemed truly motivated by what they thought would be “best for the web”.  However, the net effect of the disagreement was to block any real chance of actually achieving an approved revision to the ECMAScript specification any time soon.

 

Most of these points of disagreement have now been resolved. Rather than re-telling this story, we’d like to point  to ECMA's press release and the accompanying white paper that  lay out the agreements that have been reached in the ECMAScript technical committee. We think that these agreements set the stage for real progress in advancing standards-based web scripting and Microsoft is committed to being an active participant in making these advances. We want to thank and congratulate our colleagues at Adobe, Apple, Google, IBM, Mozilla, Opera, Yahoo!, and  other organizations for working hard to get past these differences in order to find a common path forward for ECMAScript.

 

Pratap Lakshman

Allen Wirfs-Brock

 

Published Wednesday, August 20, 2008 6:41 PM by don.raman

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# funny wallpaper » ECMAScript 3 and beyond - the road to “Harmony”

# re: ECMAScript 3 and beyond - the road to "Harmony"

Wednesday, August 20, 2008 7:06 PM by -TNO-

It's good to finally see an update on the JScript blog after so long. It feels like the forgotten/ignored language of Microsoft.

I'm curious to what direction ManagedJScript will go? Is the plan to be ES3+ compliant?

How will this correspond to the current state of the multiple differing implementations already being provided in the differing OSes? Will these differing branches ultimately be consolidated or some of them deprecated?

ManagedJScript

JScript.NET

JScript 5.7 WSH

Internet Explorer JScript

Classic ASP JScript

(ECMA-327)...Diet JScript?

# re: ECMAScript 3 and beyond - the road to "Harmony"

Thursday, August 21, 2008 10:09 AM by Clark

Question 1: Will IE8 support a new level of JScript?

Question 2: If so which version of ECMAScript will it be based on?

Question 3: Regardless of ECMAScript version the biggest issue for Web Developers is IE's lack of following 2 critical DOM related issues. Properly supporting prototyping on Elements and properly supporting the DOM Event Listener methods.  Will these be fixed in IE8?

# re: ECMAScript 3 and beyond - the road to "Harmony"

Friday, August 22, 2008 11:52 PM by Andrew Csontos

Congratulations on Harmony! I think it was the right decision.

I have two questions on ManagedJscript.

Question 1: Do you have a prediction on a release date for ManagedJscript.

Question 2: Is there already (or will there be) a way to run ManagedJscript from a console (like there is for IronRuby and IronPython)?

So far, the only containers for ManagedJScript that I have seen are ASPX and Silverlight.

We would like to use it for batch files.

Thank you

Andrew Csontos

# re: ECMAScript 3 and beyond - the road to "Harmony"

Monday, August 25, 2008 6:01 AM by Vader

# re: ECMAScript 3 and beyond - the road to "Harmony"

Saturday, August 30, 2008 10:00 PM by Les

"It's good to finally see an update on the JScript blog after so long. It feels like the forgotten/ignored language of Microsoft."

* That would be VBScript. It will be getting no new functionality, and last I read it was the Sustaining Engineering Team's responsibility. That's probably where it belongs, too :P.

"JScript 5.7 WSH, Internet Explorer JScript, Classic ASP JScript"

* Those are all the same thing, are they not? Are there different versions of JScript.DLL floating around for each of those? I thought WSH, ASP, and Internet Explorer were all merely host environments.

# re: ECMAScript 3 and beyond - the road to "Harmony"

Tuesday, September 02, 2008 12:47 AM by Pratap Lakshman, JScript

@TNO: Managed JScript is an implementation based on the published ECMAScript 3rd Edition Specification. By ES3+ (as you call it) if you are referring to a future revision to the ECMAScript standard, it is premature to make such a commitment; the definition of such an ES3+ is not yet complete. Nevertheless we are eager to hear your opinion and that of the community at large on such matters.

@Clark: Regarding the first two questions, JScript is based on the published ECMAScript 3rd Edition Specification. It is reasonable to assume that for the short term JScript in IE will continue to be based upon ECMAScript 3rd Edition. Compatibility between ECMAScript implementations within different browsers is a major issue for web applications developers and Microsoft wants to help minimize this problem. As the new revision to the ECMAScript standard, IE will try to provide timely support for it.

Regarding your third question, details regarding any support for DOM customization will be forthcoming through the various IE communication channels.

@Csontos: At the moment there is no way to run Managed JScript from a console. Regarding your mention of batch file, I am very interested in knowing more about the actual scenario.

@Les, @TNO: You are correct.

# re: ECMAScript 3 and beyond - the road to "Harmony"

Wednesday, September 10, 2008 12:47 AM by -TNO-

@Les

Depending on system setup you may indeed have these versions side by side. Do a quick search on your computer for the .dll's and compare the versions.

@Lakshman

In regards to ManagedJScript, of course the community at large expects continued ECMA compliance at a minimum otherwise its a waste of time. Isn't that the point in  participating in ES Harmony? Implementing a branched, noncompliant version of ES 3.1 (or whatever its designation will be) would alienate the JS hackers since they would have no confidence in their learned skill sets and habits with the language. I'd hate to see ManagedJScript turn into another JScript.NET, broken then abandoned...

Since the JScript team is committed to providing cross-browser language support, what is the road map for JScript 5.8 vs ManagedJScript? Is it parallel or planning to diverge?

Since the other mainstream browsers are now pushing JIT compilers, will the response be replacing JScript 5.8 with ManagedJScript since there are already compilers to MSIL? (Not expecting an answer on this one)

Csontos has a very interesting point. Right now we have available and JScript 5.7 in the WSH. A few years ago there was a mention of WSH.NET but that fell to the way side in favor of PowerShell. This leaves system admins and client side hackers who use this technology nowhere to go for new features except to learn a new language and have to port all their old code (JScript.NET was and is not the answer for this). Offering a client desktop compiler alternative for jsc.exe with the ManagedJScript compiler would be a major plus especially since there is a viable option now to actually have Visual Studio Support the language.

# re: ECMAScript 3 and beyond - the road to "Harmony"

Tuesday, September 30, 2008 1:21 AM by Andrew Csontos

@TNO

That is exactly what I was talking about when I mentioned a console container.

We have tons of WSF batch files written in JavaScript.  It would be great to have something like a WSH.NET so we could access to the .NET library and still reuse all or most of our existing code.

Leave a Comment

(required) 
required 
(required) 
 
Page view tracker