@trust0/ridb-core 1.6.0 → 1.6.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.
package/pkg/ridb_core.js CHANGED
@@ -20,6 +20,15 @@ function takeObject(idx) {
20
20
  return ret;
21
21
  }
22
22
 
23
+ function addHeapObject(obj) {
24
+ if (heap_next === heap.length) heap.push(heap.length + 1);
25
+ const idx = heap_next;
26
+ heap_next = heap[idx];
27
+
28
+ heap[idx] = obj;
29
+ return idx;
30
+ }
31
+
23
32
  const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
24
33
 
25
34
  if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
@@ -38,15 +47,6 @@ function getStringFromWasm0(ptr, len) {
38
47
  return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
39
48
  }
40
49
 
41
- function addHeapObject(obj) {
42
- if (heap_next === heap.length) heap.push(heap.length + 1);
43
- const idx = heap_next;
44
- heap_next = heap[idx];
45
-
46
- heap[idx] = obj;
47
- return idx;
48
- }
49
-
50
50
  let WASM_VECTOR_LEN = 0;
51
51
 
52
52
  const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
@@ -205,23 +205,20 @@ const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
205
205
  wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b)
206
206
  });
207
207
 
208
- function makeMutClosure(arg0, arg1, dtor, f) {
208
+ function makeClosure(arg0, arg1, dtor, f) {
209
209
  const state = { a: arg0, b: arg1, cnt: 1, dtor };
210
210
  const real = (...args) => {
211
211
  // First up with a closure we increment the internal reference
212
212
  // count. This ensures that the Rust closure environment won't
213
213
  // be deallocated while we're invoking it.
214
214
  state.cnt++;
215
- const a = state.a;
216
- state.a = 0;
217
215
  try {
218
- return f(a, state.b, ...args);
216
+ return f(state.a, state.b, ...args);
219
217
  } finally {
220
218
  if (--state.cnt === 0) {
221
- wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
219
+ wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b);
220
+ state.a = 0;
222
221
  CLOSURE_DTORS.unregister(state);
223
- } else {
224
- state.a = a;
225
222
  }
226
223
  }
227
224
  };
@@ -229,29 +226,39 @@ function makeMutClosure(arg0, arg1, dtor, f) {
229
226
  CLOSURE_DTORS.register(real, state, state);
230
227
  return real;
231
228
  }
232
- function __wbg_adapter_56(arg0, arg1, arg2) {
233
- const ret = wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h7b5749f7e109cebe(arg0, arg1, addHeapObject(arg2));
234
- return takeObject(ret);
235
- }
236
-
237
- function __wbg_adapter_59(arg0, arg1, arg2) {
238
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hf7f5c1429da4fe71(arg0, arg1, addHeapObject(arg2));
229
+ function __wbg_adapter_56(arg0, arg1, arg2, arg3, arg4) {
230
+ try {
231
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
232
+ wasm._dyn_core__ops__function__Fn__A_B_C___Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hbbd70d909398e1ba(retptr, arg0, arg1, addHeapObject(arg2), addHeapObject(arg3), addHeapObject(arg4));
233
+ var r0 = getInt32Memory0()[retptr / 4 + 0];
234
+ var r1 = getInt32Memory0()[retptr / 4 + 1];
235
+ var r2 = getInt32Memory0()[retptr / 4 + 2];
236
+ if (r2) {
237
+ throw takeObject(r1);
238
+ }
239
+ return takeObject(r0);
240
+ } finally {
241
+ wasm.__wbindgen_add_to_stack_pointer(16);
242
+ }
239
243
  }
240
244
 
241
- function makeClosure(arg0, arg1, dtor, f) {
245
+ function makeMutClosure(arg0, arg1, dtor, f) {
242
246
  const state = { a: arg0, b: arg1, cnt: 1, dtor };
243
247
  const real = (...args) => {
244
248
  // First up with a closure we increment the internal reference
245
249
  // count. This ensures that the Rust closure environment won't
246
250
  // be deallocated while we're invoking it.
247
251
  state.cnt++;
252
+ const a = state.a;
253
+ state.a = 0;
248
254
  try {
249
- return f(state.a, state.b, ...args);
255
+ return f(a, state.b, ...args);
250
256
  } finally {
251
257
  if (--state.cnt === 0) {
252
- wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b);
253
- state.a = 0;
258
+ wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
254
259
  CLOSURE_DTORS.unregister(state);
260
+ } else {
261
+ state.a = a;
255
262
  }
256
263
  }
257
264
  };
@@ -259,24 +266,24 @@ function makeClosure(arg0, arg1, dtor, f) {
259
266
  CLOSURE_DTORS.register(real, state, state);
260
267
  return real;
261
268
  }
262
- function __wbg_adapter_62(arg0, arg1, arg2, arg3, arg4) {
263
- try {
264
- const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
265
- wasm._dyn_core__ops__function__Fn__A_B_C___Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h86ed325a024a630d(retptr, arg0, arg1, addHeapObject(arg2), addHeapObject(arg3), addHeapObject(arg4));
266
- var r0 = getInt32Memory0()[retptr / 4 + 0];
267
- var r1 = getInt32Memory0()[retptr / 4 + 1];
268
- var r2 = getInt32Memory0()[retptr / 4 + 2];
269
- if (r2) {
270
- throw takeObject(r1);
271
- }
272
- return takeObject(r0);
273
- } finally {
274
- wasm.__wbindgen_add_to_stack_pointer(16);
275
- }
269
+ function __wbg_adapter_59(arg0, arg1, arg2) {
270
+ const ret = wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc5f5145da16b26e4(arg0, arg1, addHeapObject(arg2));
271
+ return takeObject(ret);
272
+ }
273
+
274
+ function __wbg_adapter_62(arg0, arg1, arg2) {
275
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hbe98bae341e12bb6(arg0, arg1, addHeapObject(arg2));
276
276
  }
277
277
 
278
278
  function __wbg_adapter_65(arg0, arg1, arg2) {
279
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h002fe7d5dfec328e(arg0, arg1, addHeapObject(arg2));
279
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h80ee32fc34c22e0b(arg0, arg1, addHeapObject(arg2));
280
+ }
281
+
282
+ function _assertClass(instance, klass) {
283
+ if (!(instance instanceof klass)) {
284
+ throw new Error(`expected instance of ${klass.name}`);
285
+ }
286
+ return instance.ptr;
280
287
  }
281
288
 
282
289
  let cachedUint32Memory0 = null;
@@ -299,13 +306,6 @@ function getArrayJsValueFromWasm0(ptr, len) {
299
306
  return result;
300
307
  }
301
308
 
302
- function _assertClass(instance, klass) {
303
- if (!(instance instanceof klass)) {
304
- throw new Error(`expected instance of ${klass.name}`);
305
- }
306
- return instance.ptr;
307
- }
308
-
309
309
  let stack_pointer = 128;
310
310
 
311
311
  function addBorrowedObject(obj) {
@@ -313,24 +313,6 @@ function addBorrowedObject(obj) {
313
313
  heap[--stack_pointer] = obj;
314
314
  return stack_pointer;
315
315
  }
316
-
317
- function passArrayJsValueToWasm0(array, malloc) {
318
- const ptr = malloc(array.length * 4, 4) >>> 0;
319
- const mem = getUint32Memory0();
320
- for (let i = 0; i < array.length; i++) {
321
- mem[ptr / 4 + i] = addHeapObject(array[i]);
322
- }
323
- WASM_VECTOR_LEN = array.length;
324
- return ptr;
325
- }
326
-
327
- function handleError(f, args) {
328
- try {
329
- return f.apply(this, args);
330
- } catch (e) {
331
- wasm.__wbindgen_exn_store(addHeapObject(e));
332
- }
333
- }
334
316
  /**
335
317
  */
336
318
  export function main_js() {
@@ -345,6 +327,23 @@ export function is_debug_mode() {
345
327
  return ret !== 0;
346
328
  }
347
329
 
330
+ function handleError(f, args) {
331
+ try {
332
+ return f.apply(this, args);
333
+ } catch (e) {
334
+ wasm.__wbindgen_exn_store(addHeapObject(e));
335
+ }
336
+ }
337
+
338
+ function passArrayJsValueToWasm0(array, malloc) {
339
+ const ptr = malloc(array.length * 4, 4) >>> 0;
340
+ const mem = getUint32Memory0();
341
+ for (let i = 0; i < array.length; i++) {
342
+ mem[ptr / 4 + i] = addHeapObject(array[i]);
343
+ }
344
+ WASM_VECTOR_LEN = array.length;
345
+ return ptr;
346
+ }
348
347
  /**
349
348
  * Handler for `console.log` invocations.
350
349
  *
@@ -411,20 +410,17 @@ export function __wbgtest_console_error(args) {
411
410
  }
412
411
 
413
412
  function __wbg_adapter_290(arg0, arg1) {
414
- wasm.wasm_bindgen__convert__closures__invoke0_mut__h66fab07c914fb475(arg0, arg1);
413
+ wasm.wasm_bindgen__convert__closures__invoke0_mut__h84bd533389574f4d(arg0, arg1);
415
414
  }
416
415
 
417
416
  function __wbg_adapter_333(arg0, arg1, arg2, arg3, arg4) {
418
- wasm.wasm_bindgen__convert__closures__invoke3_mut__h4628b33c4840333b(arg0, arg1, addHeapObject(arg2), arg3, addHeapObject(arg4));
417
+ wasm.wasm_bindgen__convert__closures__invoke3_mut__h3608a0bbf7229368(arg0, arg1, addHeapObject(arg2), arg3, addHeapObject(arg4));
419
418
  }
420
419
 
421
420
  function __wbg_adapter_384(arg0, arg1, arg2, arg3) {
422
- wasm.wasm_bindgen__convert__closures__invoke2_mut__h52532ff5a9b6e10e(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
421
+ wasm.wasm_bindgen__convert__closures__invoke2_mut__h0b860a6b6d5d8826(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
423
422
  }
424
423
 
425
- /**
426
- */
427
- export const Errors = Object.freeze({ Error:0,"0":"Error",HookError:1,"1":"HookError",QueryError:2,"2":"QueryError",SerializationError:3,"3":"SerializationError",ValidationError:4,"4":"ValidationError",AuthenticationError:5,"5":"AuthenticationError", });
428
424
  /**
429
425
  * Represents the type of operation to be performed on the collection.
430
426
  */
@@ -449,6 +445,9 @@ QUERY:3,"3":"QUERY",
449
445
  * Count Operation.
450
446
  */
451
447
  COUNT:4,"4":"COUNT", });
448
+ /**
449
+ */
450
+ export const Errors = Object.freeze({ Error:0,"0":"Error",HookError:1,"1":"HookError",QueryError:2,"2":"QueryError",SerializationError:3,"3":"SerializationError",ValidationError:4,"4":"ValidationError",AuthenticationError:5,"5":"AuthenticationError", });
452
451
 
453
452
  const BasePluginFinalization = (typeof FinalizationRegistry === 'undefined')
454
453
  ? { register: () => {}, unregister: () => {} }
@@ -913,7 +912,8 @@ export class CoreStorage {
913
912
  try {
914
913
  const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
915
914
  _assertClass(query, Query);
916
- wasm.corestorage_matchesQuery(retptr, this.__wbg_ptr, addBorrowedObject(document), query.__wbg_ptr);
915
+ var ptr0 = query.__destroy_into_raw();
916
+ wasm.corestorage_matchesQuery(retptr, this.__wbg_ptr, addBorrowedObject(document), ptr0);
917
917
  var r0 = getInt32Memory0()[retptr / 4 + 0];
918
918
  var r1 = getInt32Memory0()[retptr / 4 + 1];
919
919
  var r2 = getInt32Memory0()[retptr / 4 + 2];
@@ -1075,7 +1075,8 @@ export class InMemory {
1075
1075
  */
1076
1076
  write(op) {
1077
1077
  _assertClass(op, Operation);
1078
- const ret = wasm.inmemory_write(this.__wbg_ptr, op.__wbg_ptr);
1078
+ var ptr0 = op.__destroy_into_raw();
1079
+ const ret = wasm.inmemory_write(this.__wbg_ptr, ptr0);
1079
1080
  return takeObject(ret);
1080
1081
  }
1081
1082
  /**
@@ -1215,7 +1216,8 @@ export class IndexDB {
1215
1216
  */
1216
1217
  write(op) {
1217
1218
  _assertClass(op, Operation);
1218
- const ret = wasm.indexdb_write(this.__wbg_ptr, op.__wbg_ptr);
1219
+ var ptr0 = op.__destroy_into_raw();
1220
+ const ret = wasm.indexdb_write(this.__wbg_ptr, ptr0);
1219
1221
  return takeObject(ret);
1220
1222
  }
1221
1223
  /**
@@ -2302,22 +2304,22 @@ function __wbg_get_imports() {
2302
2304
  imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
2303
2305
  takeObject(arg0);
2304
2306
  };
2305
- imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
2306
- const ret = getStringFromWasm0(arg0, arg1);
2307
- return addHeapObject(ret);
2308
- };
2309
- imports.wbg.__wbg_start_76c138c3b73ae6f8 = function() { return handleError(function (arg0) {
2310
- const ret = getObject(arg0).start();
2311
- return addHeapObject(ret);
2312
- }, arguments) };
2313
2307
  imports.wbg.__wbg_ridberror_new = function(arg0) {
2314
2308
  const ret = RIDBError.__wrap(arg0);
2315
2309
  return addHeapObject(ret);
2316
2310
  };
2311
+ imports.wbg.__wbg_find_567c5c9f064fe3d2 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2312
+ const ret = getObject(arg0).find(getStringFromWasm0(arg1, arg2), takeObject(arg3), QueryOptions.__wrap(arg4));
2313
+ return addHeapObject(ret);
2314
+ }, arguments) };
2317
2315
  imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
2318
2316
  const ret = getObject(arg0);
2319
2317
  return addHeapObject(ret);
2320
2318
  };
2319
+ imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
2320
+ const ret = getStringFromWasm0(arg0, arg1);
2321
+ return addHeapObject(ret);
2322
+ };
2321
2323
  imports.wbg.__wbindgen_is_undefined = function(arg0) {
2322
2324
  const ret = getObject(arg0) === undefined;
2323
2325
  return ret;
@@ -2326,6 +2328,18 @@ function __wbg_get_imports() {
2326
2328
  const ret = getObject(arg0) === null;
2327
2329
  return ret;
2328
2330
  };
2331
+ imports.wbg.__wbg_start_76c138c3b73ae6f8 = function() { return handleError(function (arg0) {
2332
+ const ret = getObject(arg0).start();
2333
+ return addHeapObject(ret);
2334
+ }, arguments) };
2335
+ imports.wbg.__wbindgen_number_new = function(arg0) {
2336
+ const ret = arg0;
2337
+ return addHeapObject(ret);
2338
+ };
2339
+ imports.wbg.__wbg_close_6384ed3c27ef25c1 = function() { return handleError(function (arg0) {
2340
+ const ret = getObject(arg0).close();
2341
+ return addHeapObject(ret);
2342
+ }, arguments) };
2329
2343
  imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
2330
2344
  const obj = getObject(arg1);
2331
2345
  const ret = typeof(obj) === 'string' ? obj : undefined;
@@ -2334,10 +2348,6 @@ function __wbg_get_imports() {
2334
2348
  getInt32Memory0()[arg0 / 4 + 1] = len1;
2335
2349
  getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2336
2350
  };
2337
- imports.wbg.__wbindgen_number_new = function(arg0) {
2338
- const ret = arg0;
2339
- return addHeapObject(ret);
2340
- };
2341
2351
  imports.wbg.__wbg_apply_9f557eba1534d597 = function() { return handleError(function (arg0, arg1, arg2) {
2342
2352
  const ret = getObject(arg1).apply(takeObject(arg2));
2343
2353
  const ptr1 = passArrayJsValueToWasm0(ret, wasm.__wbindgen_malloc);
@@ -2349,14 +2359,6 @@ function __wbg_get_imports() {
2349
2359
  const ret = InMemory.__wrap(arg0);
2350
2360
  return addHeapObject(ret);
2351
2361
  };
2352
- imports.wbg.__wbg_close_6384ed3c27ef25c1 = function() { return handleError(function (arg0) {
2353
- const ret = getObject(arg0).close();
2354
- return addHeapObject(ret);
2355
- }, arguments) };
2356
- imports.wbg.__wbg_find_567c5c9f064fe3d2 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2357
- const ret = getObject(arg0).find(getStringFromWasm0(arg1, arg2), takeObject(arg3), QueryOptions.__wrap(arg4));
2358
- return addHeapObject(ret);
2359
- }, arguments) };
2360
2362
  imports.wbg.__wbg_count_19db4c3174d573d5 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2361
2363
  const ret = getObject(arg0).count(getStringFromWasm0(arg1, arg2), takeObject(arg3), QueryOptions.__wrap(arg4));
2362
2364
  return addHeapObject(ret);
@@ -2384,13 +2386,8 @@ function __wbg_get_imports() {
2384
2386
  const ret = getObject(arg0).write(Operation.__wrap(arg1));
2385
2387
  return addHeapObject(ret);
2386
2388
  }, arguments) };
2387
- imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) {
2388
- const ret = getObject(arg0) === getObject(arg1);
2389
- return ret;
2390
- };
2391
- imports.wbg.__wbindgen_boolean_get = function(arg0) {
2392
- const v = getObject(arg0);
2393
- const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
2389
+ imports.wbg.__wbindgen_is_array = function(arg0) {
2390
+ const ret = Array.isArray(getObject(arg0));
2394
2391
  return ret;
2395
2392
  };
2396
2393
  imports.wbg.__wbindgen_is_object = function(arg0) {
@@ -2398,10 +2395,6 @@ function __wbg_get_imports() {
2398
2395
  const ret = typeof(val) === 'object' && val !== null;
2399
2396
  return ret;
2400
2397
  };
2401
- imports.wbg.__wbindgen_is_array = function(arg0) {
2402
- const ret = Array.isArray(getObject(arg0));
2403
- return ret;
2404
- };
2405
2398
  imports.wbg.__wbindgen_is_string = function(arg0) {
2406
2399
  const ret = typeof(getObject(arg0)) === 'string';
2407
2400
  return ret;
@@ -2410,21 +2403,22 @@ function __wbg_get_imports() {
2410
2403
  const ret = !getObject(arg0);
2411
2404
  return ret;
2412
2405
  };
2413
- imports.wbg.__wbg_database_new = function(arg0) {
2414
- const ret = Database.__wrap(arg0);
2406
+ imports.wbg.__wbg_indexdb_new = function(arg0) {
2407
+ const ret = IndexDB.__wrap(arg0);
2415
2408
  return addHeapObject(ret);
2416
2409
  };
2417
2410
  imports.wbg.__wbg_collection_new = function(arg0) {
2418
2411
  const ret = Collection.__wrap(arg0);
2419
2412
  return addHeapObject(ret);
2420
2413
  };
2421
- imports.wbg.__wbg_indexdb_new = function(arg0) {
2422
- const ret = IndexDB.__wrap(arg0);
2414
+ imports.wbg.__wbg_database_new = function(arg0) {
2415
+ const ret = Database.__wrap(arg0);
2423
2416
  return addHeapObject(ret);
2424
2417
  };
2425
- imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
2426
- const ret = new Error(getStringFromWasm0(arg0, arg1));
2427
- return addHeapObject(ret);
2418
+ imports.wbg.__wbindgen_boolean_get = function(arg0) {
2419
+ const v = getObject(arg0);
2420
+ const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
2421
+ return ret;
2428
2422
  };
2429
2423
  imports.wbg.__wbindgen_is_function = function(arg0) {
2430
2424
  const ret = typeof(getObject(arg0)) === 'function';
@@ -2442,10 +2436,18 @@ function __wbg_get_imports() {
2442
2436
  const ret = arg0;
2443
2437
  return addHeapObject(ret);
2444
2438
  };
2439
+ imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) {
2440
+ const ret = getObject(arg0) === getObject(arg1);
2441
+ return ret;
2442
+ };
2445
2443
  imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
2446
2444
  const ret = BigInt.asUintN(64, arg0);
2447
2445
  return addHeapObject(ret);
2448
2446
  };
2447
+ imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
2448
+ const ret = new Error(getStringFromWasm0(arg0, arg1));
2449
+ return addHeapObject(ret);
2450
+ };
2449
2451
  imports.wbg.__wbg_crypto_1d1f22824a6a080c = function(arg0) {
2450
2452
  const ret = getObject(arg0).crypto;
2451
2453
  return addHeapObject(ret);
@@ -3050,19 +3052,19 @@ function __wbg_get_imports() {
3050
3052
  const ret = wasm.memory;
3051
3053
  return addHeapObject(ret);
3052
3054
  };
3053
- imports.wbg.__wbindgen_closure_wrapper913 = function(arg0, arg1, arg2) {
3054
- const ret = makeMutClosure(arg0, arg1, 333, __wbg_adapter_56);
3055
+ imports.wbg.__wbindgen_closure_wrapper625 = function(arg0, arg1, arg2) {
3056
+ const ret = makeClosure(arg0, arg1, 260, __wbg_adapter_56);
3055
3057
  return addHeapObject(ret);
3056
3058
  };
3057
- imports.wbg.__wbindgen_closure_wrapper915 = function(arg0, arg1, arg2) {
3058
- const ret = makeMutClosure(arg0, arg1, 333, __wbg_adapter_59);
3059
+ imports.wbg.__wbindgen_closure_wrapper627 = function(arg0, arg1, arg2) {
3060
+ const ret = makeMutClosure(arg0, arg1, 260, __wbg_adapter_59);
3059
3061
  return addHeapObject(ret);
3060
3062
  };
3061
- imports.wbg.__wbindgen_closure_wrapper917 = function(arg0, arg1, arg2) {
3062
- const ret = makeClosure(arg0, arg1, 333, __wbg_adapter_62);
3063
+ imports.wbg.__wbindgen_closure_wrapper629 = function(arg0, arg1, arg2) {
3064
+ const ret = makeMutClosure(arg0, arg1, 260, __wbg_adapter_62);
3063
3065
  return addHeapObject(ret);
3064
3066
  };
3065
- imports.wbg.__wbindgen_closure_wrapper1612 = function(arg0, arg1, arg2) {
3067
+ imports.wbg.__wbindgen_closure_wrapper1614 = function(arg0, arg1, arg2) {
3066
3068
  const ret = makeMutClosure(arg0, arg1, 444, __wbg_adapter_65);
3067
3069
  return addHeapObject(ret);
3068
3070
  };
Binary file