@bytecodealliance/jco 1.16.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1371,7 +1371,7 @@ class ComponentAsyncState {
1371
1371
  hasBackpressure() { return this.#backpressure > 0; }
1372
1372
 
1373
1373
  waitForBackpressure() {
1374
- const backpressureCleared = false;
1374
+ let backpressureCleared = false;
1375
1375
  const cstate = this;
1376
1376
  cstate.addBackpressureWaiter();
1377
1377
  const handlerID = this.registerHandler({
package/obj/wasm-tools.js CHANGED
@@ -1371,7 +1371,7 @@ class ComponentAsyncState {
1371
1371
  hasBackpressure() { return this.#backpressure > 0; }
1372
1372
 
1373
1373
  waitForBackpressure() {
1374
- const backpressureCleared = false;
1374
+ let backpressureCleared = false;
1375
1375
  const cstate = this;
1376
1376
  cstate.addBackpressureWaiter();
1377
1377
  const handlerID = this.registerHandler({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytecodealliance/jco",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "description": "JavaScript tooling for working with WebAssembly Components",
5
5
  "homepage": "https://github.com/bytecodealliance/jco#readme",
6
6
  "author": "Guy Bedford",
package/src/jco.js CHANGED
@@ -25,7 +25,7 @@ program
25
25
  )
26
26
  .usage('<command> [options]')
27
27
  .enablePositionalOptions()
28
- .version('1.16.0');
28
+ .version('1.16.1');
29
29
 
30
30
  function myParseInt(value) {
31
31
  return parseInt(value, 10);