Comparing this:<p>http://4.bp.blogspot.com/-umhKFVMan2s/T0wUSwJ0-eI/AAAAAAAAAYA/wAVWOlteJSw/s1600/graph1.png<p>with Dart's Performance:<p>https://www.dartlang.org/performance<p>It seems that V8 CrankShaft outperforms the DartVM, and that's CrankShaft, apparently TurboFan is supposed to outperform CrankShaft too... What do you guys think?
Dart VM uses a black list for methods that cannot be optimized by VM intelligence.
I cannot say anything about V8.
But with optimization in Dart VM not all so good.
Dynamic typing in Javascript is a normal behavior (VM optimized for that).
Dynamic typing in Dart produce a lot of pitfalls (in the sense of the intelligence of optimization).