Recently, I was reading this article
about compiling Ada to WebAssembly and running in the browser. I haven’t used Ada
and I don’t plan to, but because I was curious about how they were doing OpenGL
from WebAssembly, I took a peak at the JavaScript shim they were using and found
code like this:
__adawebpack__html__Button__disabled_getter: function(identifier) {
return +(__adawebpack_o2i.too(identifier).disabled);
},
__adawebpack__html__Button__disabled_setter: function(identifier,to) {
__adawebpack_o2i.too (identifier).disabled = (to !== 0);
},
__adawebpack__html__Canvas__height_getter: function(identifier) {
return __adawebpack_o2i.too(identifier).height;
},
I’m sure that it works, but I found it looked a bit clunky. So I began thinking
about how I would get the same behavior while not having to produce so much
boilerplate code. The idea of using handles to reference JavaScript objects
is good, so I kept it, but tried to reduce the remainder to as few API calls
as I thought was reasonable. JavaScript helps here in that ever object except
window
can be accessed thru window
with indexing (i.e. []
)
Here is what I came up with: