Does the Google Dart JavaScript converter support older browsers or is it only supporting modern browsers?

link|improve this question

57% accept rate
feedback

2 Answers

up vote 5 down vote accepted

According to technical overview of its official site :

You will be able to run Dart code in several ways:

1.Translate Dart code to JavaScript that can run in any modern browser: Chrome, Safari 5+, and Firefox 4+ (more browser support coming shortly).

2.Execute Dart code directly in a VM on the server side

3.Use Dartboard to write, modify, and execute small Dart programs within any browser window


There is little chance that the Dart -> JavaScript compiler will support older browsers.

link|improve this answer
feedback

It's supported in no browsers currently. However code in dart can be compiled to JavaScript.

link|improve this answer
I think he meant that the JavaScript created from the converter support older browsers or not. – Dvir Azulay Oct 11 '11 at 16:38
Yes, sorry that's what I meant. – doorman Oct 11 '11 at 16:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.