Ben Smith

Results 372 comments of Ben Smith

OK, took a long time but I think I fixed all of these in v1.0.13 :-D

It's not really made to be played, it's more of a programming demo than a real emulator you should use :) but if you're interested in trying it the build...

Sgtm, next steps would be [bringing to CG]( https://github.com/WebAssembly/meetings/blob/master/process/phases.md#0-pre-proposal-community-group).

Here's an example that's about as simple as it gets: ```html /* (module (func (export "add") (param i32 i32) (result i32) get_local 0 get_local 1 i32.add)) */ let moduleBytes =...

OK, here you go: https://gist.github.com/binji/09e61f11f7b9307bcbcc120b95cf4162 > The way I imagine using WebAssembly is to write WA code... You can write WebAssembly text by hand, but we expect most users will...

@pipcet as an FYI, your idea seems similar to [LLVM's intrinsic functions](http://llvm.org/docs/LangRef.html#intrinsic-functions).

@xtuc `addEventListener` seems odd to me; that's more of a web API than a JS API. @NWilson Are you providing JS glue for arbitrary wasm modules? If you're generating the...

We discussed this briefly here: https://github.com/WebAssembly/bulk-memory-operations/issues/15

Here's an old blog post that I wrote about some of this: [WebAssembly type-checking]( https://binji.github.io/2017/03/04/webassembly-type-checking.html). You might find it helpful. > But I found later that 'return' does stack cleanup...

@joelonsql The semantics document is useful as an overview, but has not been updated in a long time. You may want to look at the spec instead. In particular, `br`...