in my mind, as it is aimed at replacing the sprawling forests of javascript
many pages are powered by, wasm pretty clearly addresses your three
points. with wasm web applications delivered to browsers can be written in
c++, rust, haskell, whatever, and compiled and linked and optimized and
profiled and reoptimized on developer machines before deployment to end
users. the result of this is that performant applications won't require as
much (or any) runtime optimization like javascript engines necessarily do now:
- arbitrarily dynamic code needn't be jitted and traced and rejitted to raw
machine code at runtime
- object structure needn't be inferred and shared and monitored and reshaped
- primitive types don't have to be inferred and guarded
- functions needn't be inlined and guarded because they are all dynamically
bound
- objects needn't be tracked and freed and moved around
- javascript is weird and irregular. half a point here but just look at the
equality table.
you can say that 'well formed' javascript eases the pain on these poor beasts
but they still have to strive to support as much of the common language as
they can, no matter how awful, because it's their job. wasm has to do exactly
none of this:
- jitting can occur once, at load, statically like the CLR not dynamically
like HotSpot or luajit as inlining happened on some jenkins box somewhere.
- there are no objects, there are four types and they're all 4 or 8 byte
primitives and if you need a gc you baked it into your binary. no vm-level
object or allocation headers, no gc-related finalizer bugs.
- desugared there's about 20 instructions (expressions). implement those and
you've implemented webassembly. standard lib? that was compiled into the
binary*.
because there's so much less to its job it will be safer, smaller, and more
widely consistent than javascript. it's still young and definitely not without
its warts but these three points are home runs.
* ..ish, but it's definitely more spartan:
https://webassembly.github.io/demo/AngryBots/Release/AngryBots.js
... that'll buff out :p
edit: wow i suck at HN formatting