Brooke Vibber

Results 108 comments of Brooke Vibber

A WeakMap equivalent would be great for mapping publicly exportable object references to local pointers without exposing the pointers to forgery by calling modules. [Edit: specifically this would be good...

This is a bug in Edge's asm.js optimizations: https://connect.microsoft.com/IE/feedbackdetail/view/1721733/asm-js-modules-can-only-be-executed-once-with-asm-js-optimizations-enabled

Switching build to WebAssembly should allow natural memory growth without the performance penalty from asm.js's growth mode...

If I understand correctly, you have the same problem with high-level languages for native compilation, so I don't think that's a Wasm-specific problem that Wasm needs to solve.

It's unclear to me why it's necessary to use the same name to import multiple Wasm functions with different signatures, since Wasm functions have fixed signatures (unlike JS host functions,...

I've left a note on https://github.com/WebAssembly/module-linking/issues/7#issuecomment-791063260 asking whether this can simply be part of the module linking validation without causing backwards compatibility issues for existing code that may be in...

I'm not sure I understand the special linear type handling for `stackref`; if the only way to get a `stackref` is to call a host function, then in web embedding...

I'm not so sure this is stable with babel 7.2.2 and webpack 4.29... Using the above workaround I get: ``` ERROR in Cannot read property 'isPure' of null ``` If...

I've whipped up a quick patch that implements the recommended style of constant-time string comparison: http://github.com/brion/php-openid/commit/69892130667c32fc30a2e1e6ba21e5cf448268cd I've done a little ad-hoc testing, but this code HAS NOT YET BEEN REVIEWED...