01alchemist / TurboScript

Super charged typed JavaScript dialect for parallel programming which compiles to WebAssembly
Apache License 2.0
494 stars 35 forks source link

User wants to selective compile part of the code to specific target #72

Open nidin opened 7 years ago

nidin commented 7 years ago

What? User wants to compile specific part of the code to specific target.

How?

function () {
    "use wasm"
    ....
}

function () {
    "use js"
    ....
} 

function () {
    "use asmjs"
    ....
}