CountBleck
CountBleck
Have you tried playing around with `--lib`?
I suspect something like `throw (new LocationOccupied(...))` would work, due to a [quirk/optimization in how `throw` statements are compiled](https://github.com/AssemblyScript/assemblyscript/blob/8257b1c/src%2Fcompiler.ts#L2997-L3003) (most likely to avoid allocating an object just so the program...
@lastmjs so `module.getMemorySegmentInfo(String(i))` isn't working?
It depends on how Emscripten fetches the Wasm module; if removing `-sSINGLE_FILE` doesn't play well with bundlers, it might be better to keep it there (I am assuming the generated...
This is just my own opinion, but I would like a JS API, since then I don't need to learn Java, compile anything, and make a bunch of classes and...
Yeah, scripts are easier to make without compiling and stuff. However, you would somehow have to add a JavaScript engine or some other interpreter (depends on what language is used...
[LiquidBounce uses Nashorn](https://github.com/CCBlueX/LiquidBounce/tree/nextgen/libs), which, if I remember correctly, doesn't support ES6+?
> compile it with the typescript compiler to es5 then lol You mean Babel. Also, that's inconvenient for making scripts when you need them. Moreover, that adds a dependency on...