Google SoundScript: faster OOP for JavaScript
Update 2015-02-05: More information – “ Experimental New Directions for JavaScript ” by Andreas Rossberg (slides in English). Google is currently working on SoundScript , a way to speed up object-oriented programming in JavaScript. The content of this blog post is completely based on a recent talk [1] by Dmitry Lomov. That is, everything I have written here is inferred from those slides and may or may not be correct. Note: This blog post describes first ideas, avenues that Google is exploring for making JavaScript OOP faster. The final version of SoundScript may look and work completely different. Speeding up JavaScript JavaScript has already become quite fast. Additionally, Mozilla recently presented asm.js [3] as a way to compile static languages such as C++ to JavaScript. asm.js shares many traits with bytecode and achieves about 70% of native speed. asm.js is great for cross-compiling and for number crunching (e.g. a video codec), but it doesn’t help with more sophisticated Jav...