There is no reason not to integrate dart with chrome. So long as dart2js exists and works what harm can come from having a VM in the browser?
Dart is different from flash, it was made to generate JS.
--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
To unsubscribe from this group and stop receiving emails from it, send an email to misc+uns...@dartlang.org.
The reason I see to not integrate dart into chrome is that it will make chrome bigger, slower and at the same time, less secure. And there isn't much point of doing it because you make everything more complex. Also, Dart haven't been ported to other platform such as Android and iOS.
Also, this is not really the question, the question is if we should expect dart language to be integrated into the stable channel of chrome.
Thanks Ricco, i do know that it's possibly on the android platform, but i'm not sure how much stable it is and there is no download for it. You have to build it yourself.
Also, this is not really the question, the question is if we should expect dart language to be integrated into the stable channel of chrome.
The reason I see to not integrate dart into chrome is that it will make chrome bigger,
slower
and at the same time, less secure.
And there isn't much point of doing it because you make everything more complex.
Also, Dart haven't been ported to other platform such as Android and iOS.
So instead of trying to integrate it into stable chrome, making it a better compiler is I think a better idea.My vision of the future of chrome is that they will drop support of javascript eventually and replace it with a javascript plugin made in PNaCl, so that you have Chrome -> PNaCl -> Javascript. Javascript will turn into a plugin instead of default language. So compiling Dart to PNaCl will be a neat thing and a step in the future and will eliminate all efficient code generated by going back and forth between javascript.
The reason I see to not integrate dart into chrome is that it will make chrome bigger, slower and at the same time, less secure.
Dart haven't been ported to other platform such as Android and iOS. So instead of trying to integrate it into stable chrome, making it a better compiler is I think a better idea.
My vision of the future of chrome is that they will drop support of javascript eventually and replace it with a javascript plugin made in PNaCl, so that you have Chrome -> PNaCl -> Javascript.
Hi there,Since I started to use Dart, I considered Dart as being the equivalent to C++ and the generated Js code, the assembler code. Dart for me is there to hide the complexity of javascript and take care of all difference between platform.I don't think that Dart should be integrated in Chrome. Dartium is fine for debugging, but when it come to deploy code, I think a single js file is better as it work on all platform (firefox, ie, safari, ...).
I would like Dart to allow me to target browsers and version of browser. So if I use a new feature that is only implemented one browser or one version of a browser, the compiler will tell me about it and give me an error.
With the support for IE9 being dropped soon for Dart, I have the feeling that this vision doesn't align with what we are heading too. I think that there is a huge potential in supporting a maximum number of browser and let the user choose which one he target.
If we want more speed, we should consider compiling the Dart code into PNacl instead of implementing the dart vm into Chrome. There is a lot of talk out threre about implement Dart in Chrome and there is probably also a timeline. Many people also want it, but M$ tried it with .net and the failed at it, Flash also is tried but it's now dying. Dart should not try to do the same.
What you think?Jo