Max Graey
Max Graey
How about implement general type ```number``` for backward compatibility with Typescript? It may be just alias of ```float64```.
According to this: https://github.com/WebAssembly/design/blob/master/FAQ.md we need manually implement all sets of js enviroment. This is big job. I could help with this ****UPD**** I see some stdlib already implement with...
It's enchantment idea for far future. How about to automatically create bridge for some js code block that can't directly translate to wasm? For example we have some part of...
Example for https://closure-compiler.appspot.com: ```js // ==ClosureCompiler== // @compilation_level SIMPLE_OPTIMIZATIONS // @language_in ECMASCRIPT6 // @language_out ECMASCRIPT6 // @output_file_name default.js // @formatting pretty_print // ==/ClosureCompiler== this['stringview_iter'] = { 'pop'() { return Module['_BinaryenPop'](module,...
### Overview of the problem I'm using react-sortable-pane **version** [0.7.0] My **browser** is: Chrome OS: Mac OS X ### Description During dragging phase when mouse leave track area or window...
It would be great if firm produced code for WebAssembly. Currently, only LLVM and Binaryen can do this. But LLVM is too huge, and Binaryen mostly good for low-level optimization...
It would be great to have a consistent and accurate cost table of all wasm instructions in terms of code generation on the VM side. This would make it very...
AES-NI
I'm not sure if this is the right place for this proposal, but I would like to suggest some very useful commands to speed up cryptography and especially cryptographic and...
[Future features](https://github.com/WebAssembly/design/blob/master/FutureFeatures.md#additional-integer-operators) mentioned a nice set for instruction set future improvements. For example `bswap` and `bswap16` but missing `bireverse`/`bitrev`/`rbit` operations which I think quite important due to it could be...
Original proposal: https://github.com/tc39/proposal-array-filtering/issues/2 Ofc with `groupBy` we could be emulate `partition` as: ```js function partition(arr, fn) { return Object.values(arr.groupBy(idx => Number(!fn(idx)))); } ``` or ```js function partition(arr, fn) { return...