dcodeIO

Results 46 issues of dcodeIO

From https://github.com/WebAssembly/design/issues/1419#issuecomment-861033778: > @lukewagner: I think it would make sense to talk about supporting UTF-16 as an additional encoding in the canonical ABI of string. But that's a whole separate...

As briefly mentioned in https://github.com/WebAssembly/gc/issues/145, arrays have yet unaddressed overhead / interoperability problems: * A compiler (or its standard library) cannot efficiently pre-allocate or resize arrays, if the language's array...

Currently, the name section supports Name Type | Code | Description -- | -- | -- Module | 0 | Assigns a name to the module Function | 1 |...

debugging

I know these are not real instructions, but while implementing a compiler that is not C/C++-based it turned out to be a nuisance. Duplicating fmod every time doesn't seem right...

floating point

It has been suggested to me to take the following concerns regarding the general direction of WebAssembly before a more CG-level forum, an advice I am following now in the...

This issue is for accompanying discussion of "WebAssembly, Unicode and the Web Platform". The presentation is pre-recorded, which is what we decided to try out in https://github.com/WebAssembly/meetings/pull/775, with discussion time...

It has recently been reported to me that the JS API for BigInt integration can cause unexpected problems when omitting arguments. Say one has the following Wasm module ```ts export...

JS embedding

It seems that `L.Draw.Circle#_drawShape` ``` js _drawShape: function (latlng) { if (!this._shape) { this._shape = new L.Circle(this._startLatLng, this._startLatLng.distanceTo(latlng), this.options.shapeOptions); this._map.addLayer(this._shape); } else { this._shape.setRadius(this._startLatLng.distanceTo(latlng)); } }, ``` sets the radius...

bug

To handle an external exception, for example originating in JavaScript, one would naturally use a `catch_all` clause iiuc. The caught exception can (only) be `rethrow`n unmodified as long as it...

Adds definitions for TypeBuilder / TypeSystem / GC / stringref APIs. etc. and performs initial integration. - [x] I've read the contributing guidelines - [x] I've added my name and...