@bytecodealliance/jco 1.17.1 → 1.17.2
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.
|
@@ -2225,10 +2225,15 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2225
2225
|
if (ctx.storageLen !== undefined && ctx.storageLen < ctx.storagePtr + 2) {
|
|
2226
2226
|
throw new Error('not enough storage remaining for lift');
|
|
2227
2227
|
}
|
|
2228
|
+
|
|
2228
2229
|
val = new DataView(ctx.memory.buffer).getUint16(ctx.storagePtr, true);
|
|
2230
|
+
|
|
2229
2231
|
ctx.storagePtr += 2;
|
|
2230
2232
|
if (ctx.storageLen !== undefined) { ctx.storageLen -= 2; }
|
|
2231
2233
|
|
|
2234
|
+
const rem = ctx.storagePtr % 2;
|
|
2235
|
+
if (rem !== 0) { ctx.storagePtr += (2 - rem); }
|
|
2236
|
+
|
|
2232
2237
|
return [val, ctx];
|
|
2233
2238
|
}
|
|
2234
2239
|
|
|
@@ -2294,8 +2299,7 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2294
2299
|
const codeUnits = new DataView(ctx.memory.buffer).getUint32(ctx.storagePtr + 4, true);
|
|
2295
2300
|
val = TEXT_DECODER_UTF8.decode(new Uint8Array(ctx.memory.buffer, start, codeUnits));
|
|
2296
2301
|
|
|
2297
|
-
ctx.storagePtr +=
|
|
2298
|
-
if (ctx.storageLen !== undefined) { ctx.storageLen -= codeUnits; }
|
|
2302
|
+
ctx.storagePtr += 8;
|
|
2299
2303
|
|
|
2300
2304
|
const rem = ctx.storagePtr % 4;
|
|
2301
2305
|
if (rem !== 0) { ctx.storagePtr += (4 - rem); }
|
|
@@ -2310,44 +2314,54 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2310
2314
|
const origUseParams = ctx.useDirectParams;
|
|
2311
2315
|
|
|
2312
2316
|
let caseIdx;
|
|
2317
|
+
let liftRes;
|
|
2318
|
+
const originalPtr = ctx.storagePtr;
|
|
2319
|
+
const numCases = casesAndLiftFns.length;
|
|
2313
2320
|
if (casesAndLiftFns.length < 256) {
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
discriminantByteLen = 2;
|
|
2320
|
-
const [idx, newCtx] = _liftFlatU16(ctx);
|
|
2321
|
-
caseIdx = idx;
|
|
2322
|
-
ctx = newCtx;
|
|
2323
|
-
} else if (casesAndLiftFns.length > 65536 && discriminantByteLen < 4_294_967_296) {
|
|
2324
|
-
discriminantByteLen = 4;
|
|
2325
|
-
const [idx, newCtx] = _liftFlatU32(ctx);
|
|
2326
|
-
caseIdx = idx;
|
|
2327
|
-
ctx = newCtx;
|
|
2321
|
+
liftRes = _liftFlatU8(ctx);
|
|
2322
|
+
} else if (numCases >= 256 && numCases < 65536) {
|
|
2323
|
+
liftRes = _liftFlatU16(ctx);
|
|
2324
|
+
} else if (numCases >= 65536 && numCases < 4_294_967_296) {
|
|
2325
|
+
liftRes = _liftFlatU32(ctx);
|
|
2328
2326
|
} else {
|
|
2329
|
-
throw new Error(
|
|
2327
|
+
throw new Error(`unsupported number of variant cases [${numCases}]`);
|
|
2330
2328
|
}
|
|
2329
|
+
caseIdx = liftRes[0];
|
|
2330
|
+
ctx = liftRes[1];
|
|
2331
|
+
|
|
2332
|
+
const [ tag, liftFn, size32, align32, payloadOffset32 ] = casesAndLiftFns[caseIdx];
|
|
2333
|
+
if (payloadOffset32 === undefined) { throw new Error('unexpectedly missing payload offset'); }
|
|
2331
2334
|
|
|
2332
|
-
|
|
2335
|
+
if (originalPtr !== undefined) {
|
|
2336
|
+
ctx.storagePtr = originalPtr + payloadOffset32;
|
|
2337
|
+
}
|
|
2333
2338
|
|
|
2334
2339
|
let val;
|
|
2335
2340
|
if (liftFn === null) {
|
|
2336
2341
|
val = { tag };
|
|
2337
|
-
|
|
2342
|
+
// NOTE: here we need to move past the entire object in memory
|
|
2343
|
+
// despite moving to the payload which we now know is missing/unnecessary
|
|
2344
|
+
ctx.storagePtr = originalPtr + size32;
|
|
2345
|
+
} else {
|
|
2346
|
+
const [newVal, newCtx] = liftFn(ctx);
|
|
2347
|
+
val = { tag, val: newVal };
|
|
2348
|
+
ctx = newCtx;
|
|
2349
|
+
|
|
2350
|
+
// NOTE: Padding can be left over after doing the lift if it was less than
|
|
2351
|
+
// space left for the payload normally.
|
|
2352
|
+
if (ctx.storagePtr < originalPtr + size32) {
|
|
2353
|
+
ctx.storagePtr = originalPtr + size32;
|
|
2354
|
+
}
|
|
2338
2355
|
}
|
|
2339
2356
|
|
|
2340
|
-
const
|
|
2341
|
-
ctx
|
|
2342
|
-
val = { tag, val: newVal };
|
|
2343
|
-
|
|
2344
|
-
// TODO: adjust for alignment, as lift fn may not adjust for it (e.g. strings)!
|
|
2357
|
+
const rem = ctx.storagePtr % align32;
|
|
2358
|
+
if (rem !== 0) { ctx.storagePtr += align32 - rem; }
|
|
2345
2359
|
|
|
2346
2360
|
return [val, ctx];
|
|
2347
2361
|
}
|
|
2348
2362
|
}
|
|
2349
2363
|
|
|
2350
|
-
function _liftFlatList(elemLiftFn,
|
|
2364
|
+
function _liftFlatList(elemLiftFn, align32, knownLen) {
|
|
2351
2365
|
function _liftFlatListInner(ctx) {
|
|
2352
2366
|
_debugLog('[_liftFlatList()] args', { ctx });
|
|
2353
2367
|
|
|
@@ -2390,10 +2404,12 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2390
2404
|
|
|
2391
2405
|
const val = [];
|
|
2392
2406
|
for (var i = 0; i < len; i++) {
|
|
2393
|
-
ctx.storagePtr = Math.ceil(ctx.storagePtr / alignment32) * alignment32;
|
|
2394
2407
|
const [res, nextCtx] = elemLiftFn(ctx);
|
|
2395
2408
|
val.push(res);
|
|
2396
2409
|
ctx = nextCtx;
|
|
2410
|
+
|
|
2411
|
+
const rem = ctx.storagePtr % align32;
|
|
2412
|
+
if (rem !== 0) { newCtx.storagePtr += (align32 - rem); }
|
|
2397
2413
|
}
|
|
2398
2414
|
|
|
2399
2415
|
return [val, ctx];
|
|
@@ -2467,6 +2483,21 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2467
2483
|
return 8;
|
|
2468
2484
|
}
|
|
2469
2485
|
|
|
2486
|
+
function _lowerFlatStringUTF8(ctx) {
|
|
2487
|
+
_debugLog('[_lowerFlatStringUTF8()] args', ctx);
|
|
2488
|
+
|
|
2489
|
+
const { memory, realloc, vals, storagePtr, storageLen } = ctx;
|
|
2490
|
+
|
|
2491
|
+
const s = vals[0];
|
|
2492
|
+
const { ptr, len, codepoints } = _utf8AllocateAndEncode(vals[0], realloc, memory);
|
|
2493
|
+
|
|
2494
|
+
const view = new DataView(memory.buffer);
|
|
2495
|
+
view.setUint32(storagePtr, ptr, true);
|
|
2496
|
+
view.setUint32(storagePtr + 4, codepoints, true);
|
|
2497
|
+
|
|
2498
|
+
return len;
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2470
2501
|
function _lowerFlatRecord(fieldMetas) {
|
|
2471
2502
|
return (size, memory, vals, storagePtr, storageLen) => {
|
|
2472
2503
|
const params = [...arguments].slice(5);
|
|
@@ -2490,45 +2521,52 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2490
2521
|
}
|
|
2491
2522
|
}
|
|
2492
2523
|
|
|
2493
|
-
function _lowerFlatVariant(
|
|
2494
|
-
const { discriminantSizeBytes, lowerMetas } = metadata;
|
|
2495
|
-
|
|
2524
|
+
function _lowerFlatVariant(lowerMetas) {
|
|
2496
2525
|
return function _lowerFlatVariantInner(ctx) {
|
|
2497
|
-
_debugLog('[
|
|
2526
|
+
_debugLog('[_lowerFlatVariant()] args', ctx);
|
|
2527
|
+
|
|
2498
2528
|
const { memory, realloc, vals, storageLen, componentIdx } = ctx;
|
|
2499
2529
|
let storagePtr = ctx.storagePtr;
|
|
2500
2530
|
|
|
2501
2531
|
const { tag, val } = vals[0];
|
|
2502
|
-
const
|
|
2503
|
-
if (
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
throw new Error(
|
|
2520
|
-
}
|
|
2521
|
-
if (bytesWritten !== discriminantSizeBytes) {
|
|
2522
|
-
throw new Error("unexpectedly wrote more bytes than discriminant");
|
|
2532
|
+
const disc = lowerMetas.findIndex(m => m[0] === tag);
|
|
2533
|
+
if (disc === -1) {
|
|
2534
|
+
throw new Error(`invalid variant tag/discriminant [${tag}] (valid tags: ${variantMetas.map(m => m[0])})`);
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
const [ _tag, lowerFn, size32, align32, payloadOffset32 ] = lowerMetas[disc];
|
|
2538
|
+
|
|
2539
|
+
const originalPtr = ctx.resultPtr;
|
|
2540
|
+
ctx.vals = [disc];
|
|
2541
|
+
let discLowerRes;
|
|
2542
|
+
if (lowerMetas.length < 256) {
|
|
2543
|
+
discLowerRes = _lowerFlatU8(ctx);
|
|
2544
|
+
} else if (lowerMetas.length >= 256 && lowerMetas.length < 65536) {
|
|
2545
|
+
discLowerRes = _lowerFlatU16(ctx);
|
|
2546
|
+
} else if (lowerMetas.length >= 65536 && lowerMetas.length < 4_294_967_296) {
|
|
2547
|
+
discLowerRes = _lowerFlatU32(ctx);
|
|
2548
|
+
} else {
|
|
2549
|
+
throw new Error('unsupported number of cases [' + lowerMetas.legnth + ']');
|
|
2523
2550
|
}
|
|
2524
|
-
storagePtr += bytesWritten;
|
|
2525
2551
|
|
|
2526
|
-
|
|
2527
|
-
const rem = storagePtr % variant.align32;
|
|
2528
|
-
if (rem !== 0) { storagePtr += (variant.align32 - rem); }
|
|
2529
|
-
bytesWritten += rem;
|
|
2552
|
+
ctx.resultPtr = originalPtr + payloadOffset32;
|
|
2530
2553
|
|
|
2531
|
-
|
|
2554
|
+
const payloadBytesWritten = lowerFn({
|
|
2555
|
+
memory,
|
|
2556
|
+
realloc,
|
|
2557
|
+
vals: [val],
|
|
2558
|
+
storagePtr,
|
|
2559
|
+
storageLen,
|
|
2560
|
+
componentIdx,
|
|
2561
|
+
});
|
|
2562
|
+
let bytesWritten = payloadOffset + payloadBytesWritten;
|
|
2563
|
+
|
|
2564
|
+
const rem = ctx.storagePtr % align32;
|
|
2565
|
+
if (rem !== 0) {
|
|
2566
|
+
const pad = align32 - rem;
|
|
2567
|
+
ctx.storagePtr += pad;
|
|
2568
|
+
bytesWritten += pad;
|
|
2569
|
+
}
|
|
2532
2570
|
|
|
2533
2571
|
return bytesWritten;
|
|
2534
2572
|
}
|
|
@@ -2606,25 +2644,17 @@ function _lowerImportBackwardsCompat(args) {
|
|
|
2606
2644
|
return data.byteLength;
|
|
2607
2645
|
}
|
|
2608
2646
|
|
|
2609
|
-
function _lowerFlatOption(
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
throw new Error('not enough storage remaining for option flat lower');
|
|
2647
|
+
function _lowerFlatOption(lowerMetas) {
|
|
2648
|
+
function _lowerFlatOptionInner(ctx) {
|
|
2649
|
+
_debugLog('[_lowerFlatOption()] args', { ctx });
|
|
2650
|
+
return _lowerFlatVariant(lowerMetas)(ctx);
|
|
2614
2651
|
}
|
|
2615
|
-
const data = new Uint8Array(memory.buffer, start, size);
|
|
2616
|
-
new Uint8Array(memory.buffer, storagePtr, size).set(data);
|
|
2617
|
-
return data.byteLength;
|
|
2618
2652
|
}
|
|
2619
2653
|
|
|
2620
2654
|
function _lowerFlatResult(lowerMetas) {
|
|
2621
|
-
|
|
2622
|
-
if (invalidTag) { throw new Error(`invalid variant tag [${invalidTag}] found for result`); }
|
|
2623
|
-
|
|
2624
|
-
return function _lowerFlatResultInner() {
|
|
2655
|
+
return function _lowerFlatResultInner(ctx) {
|
|
2625
2656
|
_debugLog('[_lowerFlatResult()] args', { lowerMetas });
|
|
2626
|
-
|
|
2627
|
-
return lowerFn.apply(null, arguments);
|
|
2657
|
+
return _lowerFlatVariant(lowerMetas)(ctx);
|
|
2628
2658
|
};
|
|
2629
2659
|
}
|
|
2630
2660
|
|
|
@@ -8600,7 +8630,7 @@ null,
|
|
|
8600
8630
|
componentIdx: 0,
|
|
8601
8631
|
isAsync: false,
|
|
8602
8632
|
isManualAsync: _trampoline10.manuallyAsync,
|
|
8603
|
-
paramLiftFns: [_liftFlatResult([['ok', null,
|
|
8633
|
+
paramLiftFns: [_liftFlatResult([['ok', null, 0, 0, 0],['err', null, 0, 0, 0],])],
|
|
8604
8634
|
resultLowerFns: [],
|
|
8605
8635
|
funcTypeIsAsync: false,
|
|
8606
8636
|
getCallbackFn: () => null,
|
|
@@ -8618,7 +8648,7 @@ null,
|
|
|
8618
8648
|
componentIdx: 0,
|
|
8619
8649
|
isAsync: false,
|
|
8620
8650
|
isManualAsync: _trampoline10.manuallyAsync,
|
|
8621
|
-
paramLiftFns: [_liftFlatResult([['ok', null,
|
|
8651
|
+
paramLiftFns: [_liftFlatResult([['ok', null, 0, 0, 0],['err', null, 0, 0, 0],])],
|
|
8622
8652
|
resultLowerFns: [],
|
|
8623
8653
|
funcTypeIsAsync: false,
|
|
8624
8654
|
getCallbackFn: () => null,
|
|
@@ -8675,7 +8705,7 @@ null,
|
|
|
8675
8705
|
isAsync: false,
|
|
8676
8706
|
isManualAsync: _trampoline12.manuallyAsync,
|
|
8677
8707
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8678
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8708
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatFlags.bind(null, 0), 2, 1, 1 ],[ 'err', _lowerFlatEnum.bind(null, 0), 2, 1, 1 ],])],
|
|
8679
8709
|
funcTypeIsAsync: false,
|
|
8680
8710
|
getCallbackFn: () => null,
|
|
8681
8711
|
getPostReturnFn: () => null,
|
|
@@ -8693,7 +8723,7 @@ null,
|
|
|
8693
8723
|
isAsync: false,
|
|
8694
8724
|
isManualAsync: _trampoline12.manuallyAsync,
|
|
8695
8725
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8696
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8726
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatFlags.bind(null, 0), 2, 1, 1 ],[ 'err', _lowerFlatEnum.bind(null, 0), 2, 1, 1 ],])],
|
|
8697
8727
|
funcTypeIsAsync: false,
|
|
8698
8728
|
getCallbackFn: () => null,
|
|
8699
8729
|
getPostReturnFn: () => null,
|
|
@@ -8712,7 +8742,7 @@ null,
|
|
|
8712
8742
|
isAsync: false,
|
|
8713
8743
|
isManualAsync: _trampoline13.manuallyAsync,
|
|
8714
8744
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8715
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8745
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatEnum.bind(null, 1), 2, 1, 1 ],[ 'err', _lowerFlatEnum.bind(null, 0), 2, 1, 1 ],])],
|
|
8716
8746
|
funcTypeIsAsync: false,
|
|
8717
8747
|
getCallbackFn: () => null,
|
|
8718
8748
|
getPostReturnFn: () => null,
|
|
@@ -8730,7 +8760,7 @@ null,
|
|
|
8730
8760
|
isAsync: false,
|
|
8731
8761
|
isManualAsync: _trampoline13.manuallyAsync,
|
|
8732
8762
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8733
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8763
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatEnum.bind(null, 1), 2, 1, 1 ],[ 'err', _lowerFlatEnum.bind(null, 0), 2, 1, 1 ],])],
|
|
8734
8764
|
funcTypeIsAsync: false,
|
|
8735
8765
|
getCallbackFn: () => null,
|
|
8736
8766
|
getPostReturnFn: () => null,
|
|
@@ -8749,7 +8779,7 @@ null,
|
|
|
8749
8779
|
isAsync: false,
|
|
8750
8780
|
isManualAsync: _trampoline14.manuallyAsync,
|
|
8751
8781
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8752
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8782
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['lower', _lowerFlatU64, 16, 8 ],['upper', _lowerFlatU64, 16, 8 ],]), 24, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 24, 8, 8 ],])],
|
|
8753
8783
|
funcTypeIsAsync: false,
|
|
8754
8784
|
getCallbackFn: () => null,
|
|
8755
8785
|
getPostReturnFn: () => null,
|
|
@@ -8767,7 +8797,7 @@ null,
|
|
|
8767
8797
|
isAsync: false,
|
|
8768
8798
|
isManualAsync: _trampoline14.manuallyAsync,
|
|
8769
8799
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8770
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8800
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['lower', _lowerFlatU64, 16, 8 ],['upper', _lowerFlatU64, 16, 8 ],]), 24, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 24, 8, 8 ],])],
|
|
8771
8801
|
funcTypeIsAsync: false,
|
|
8772
8802
|
getCallbackFn: () => null,
|
|
8773
8803
|
getPostReturnFn: () => null,
|
|
@@ -8786,7 +8816,7 @@ null,
|
|
|
8786
8816
|
isAsync: false,
|
|
8787
8817
|
isManualAsync: _trampoline15.manuallyAsync,
|
|
8788
8818
|
paramLiftFns: [_liftFlatBorrow.bind(null, 0)],
|
|
8789
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
8819
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatEnum.bind(null, 0), 2, 1, 1 ],[ 'none', null, 2, 1, 1 ],])],
|
|
8790
8820
|
funcTypeIsAsync: false,
|
|
8791
8821
|
getCallbackFn: () => null,
|
|
8792
8822
|
getPostReturnFn: () => null,
|
|
@@ -8804,7 +8834,7 @@ null,
|
|
|
8804
8834
|
isAsync: false,
|
|
8805
8835
|
isManualAsync: _trampoline15.manuallyAsync,
|
|
8806
8836
|
paramLiftFns: [_liftFlatBorrow.bind(null, 0)],
|
|
8807
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
8837
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatEnum.bind(null, 0), 2, 1, 1 ],[ 'none', null, 2, 1, 1 ],])],
|
|
8808
8838
|
funcTypeIsAsync: false,
|
|
8809
8839
|
getCallbackFn: () => null,
|
|
8810
8840
|
getPostReturnFn: () => null,
|
|
@@ -8823,7 +8853,7 @@ null,
|
|
|
8823
8853
|
isAsync: false,
|
|
8824
8854
|
isManualAsync: _trampoline16.manuallyAsync,
|
|
8825
8855
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatFlags.bind(null, 1),_liftFlatStringUTF8],
|
|
8826
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8856
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['lower', _lowerFlatU64, 16, 8 ],['upper', _lowerFlatU64, 16, 8 ],]), 24, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 24, 8, 8 ],])],
|
|
8827
8857
|
funcTypeIsAsync: false,
|
|
8828
8858
|
getCallbackFn: () => null,
|
|
8829
8859
|
getPostReturnFn: () => null,
|
|
@@ -8841,7 +8871,7 @@ null,
|
|
|
8841
8871
|
isAsync: false,
|
|
8842
8872
|
isManualAsync: _trampoline16.manuallyAsync,
|
|
8843
8873
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatFlags.bind(null, 1),_liftFlatStringUTF8],
|
|
8844
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8874
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['lower', _lowerFlatU64, 16, 8 ],['upper', _lowerFlatU64, 16, 8 ],]), 24, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 24, 8, 8 ],])],
|
|
8845
8875
|
funcTypeIsAsync: false,
|
|
8846
8876
|
getCallbackFn: () => null,
|
|
8847
8877
|
getPostReturnFn: () => null,
|
|
@@ -8860,7 +8890,7 @@ null,
|
|
|
8860
8890
|
isAsync: false,
|
|
8861
8891
|
isManualAsync: _trampoline17.manuallyAsync,
|
|
8862
8892
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatU64],
|
|
8863
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8893
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 1), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8864
8894
|
funcTypeIsAsync: false,
|
|
8865
8895
|
getCallbackFn: () => null,
|
|
8866
8896
|
getPostReturnFn: () => null,
|
|
@@ -8878,7 +8908,7 @@ null,
|
|
|
8878
8908
|
isAsync: false,
|
|
8879
8909
|
isManualAsync: _trampoline17.manuallyAsync,
|
|
8880
8910
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatU64],
|
|
8881
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8911
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 1), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8882
8912
|
funcTypeIsAsync: false,
|
|
8883
8913
|
getCallbackFn: () => null,
|
|
8884
8914
|
getPostReturnFn: () => null,
|
|
@@ -8897,7 +8927,7 @@ null,
|
|
|
8897
8927
|
isAsync: false,
|
|
8898
8928
|
isManualAsync: _trampoline18.manuallyAsync,
|
|
8899
8929
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatU64],
|
|
8900
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8930
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 2), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8901
8931
|
funcTypeIsAsync: false,
|
|
8902
8932
|
getCallbackFn: () => null,
|
|
8903
8933
|
getPostReturnFn: () => null,
|
|
@@ -8915,7 +8945,7 @@ null,
|
|
|
8915
8945
|
isAsync: false,
|
|
8916
8946
|
isManualAsync: _trampoline18.manuallyAsync,
|
|
8917
8947
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatU64],
|
|
8918
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8948
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 2), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8919
8949
|
funcTypeIsAsync: false,
|
|
8920
8950
|
getCallbackFn: () => null,
|
|
8921
8951
|
getPostReturnFn: () => null,
|
|
@@ -8934,7 +8964,7 @@ null,
|
|
|
8934
8964
|
isAsync: false,
|
|
8935
8965
|
isManualAsync: _trampoline19.manuallyAsync,
|
|
8936
8966
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8937
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8967
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 2), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8938
8968
|
funcTypeIsAsync: false,
|
|
8939
8969
|
getCallbackFn: () => null,
|
|
8940
8970
|
getPostReturnFn: () => null,
|
|
@@ -8952,7 +8982,7 @@ null,
|
|
|
8952
8982
|
isAsync: false,
|
|
8953
8983
|
isManualAsync: _trampoline19.manuallyAsync,
|
|
8954
8984
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8955
|
-
resultLowerFns: [_lowerFlatResult([
|
|
8985
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 2), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8956
8986
|
funcTypeIsAsync: false,
|
|
8957
8987
|
getCallbackFn: () => null,
|
|
8958
8988
|
getPostReturnFn: () => null,
|
|
@@ -8971,7 +9001,7 @@ null,
|
|
|
8971
9001
|
isAsync: false,
|
|
8972
9002
|
isManualAsync: _trampoline20.manuallyAsync,
|
|
8973
9003
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8974
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9004
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 5), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8975
9005
|
funcTypeIsAsync: false,
|
|
8976
9006
|
getCallbackFn: () => null,
|
|
8977
9007
|
getPostReturnFn: () => null,
|
|
@@ -8989,7 +9019,7 @@ null,
|
|
|
8989
9019
|
isAsync: false,
|
|
8990
9020
|
isManualAsync: _trampoline20.manuallyAsync,
|
|
8991
9021
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
8992
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9022
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 5), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
8993
9023
|
funcTypeIsAsync: false,
|
|
8994
9024
|
getCallbackFn: () => null,
|
|
8995
9025
|
getPostReturnFn: () => null,
|
|
@@ -9008,7 +9038,7 @@ null,
|
|
|
9008
9038
|
isAsync: false,
|
|
9009
9039
|
isManualAsync: _trampoline21.manuallyAsync,
|
|
9010
9040
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
9011
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9041
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['type', _lowerFlatEnum.bind(null, 1), 96, 8 ],['linkCount', _lowerFlatU64, 96, 8 ],['size', _lowerFlatU64, 96, 8 ],['dataAccessTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['dataModificationTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['statusChangeTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],]), 104, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 104, 8, 8 ],])],
|
|
9012
9042
|
funcTypeIsAsync: false,
|
|
9013
9043
|
getCallbackFn: () => null,
|
|
9014
9044
|
getPostReturnFn: () => null,
|
|
@@ -9026,7 +9056,7 @@ null,
|
|
|
9026
9056
|
isAsync: false,
|
|
9027
9057
|
isManualAsync: _trampoline21.manuallyAsync,
|
|
9028
9058
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6)],
|
|
9029
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9059
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['type', _lowerFlatEnum.bind(null, 1), 96, 8 ],['linkCount', _lowerFlatU64, 96, 8 ],['size', _lowerFlatU64, 96, 8 ],['dataAccessTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['dataModificationTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['statusChangeTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],]), 104, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 104, 8, 8 ],])],
|
|
9030
9060
|
funcTypeIsAsync: false,
|
|
9031
9061
|
getCallbackFn: () => null,
|
|
9032
9062
|
getPostReturnFn: () => null,
|
|
@@ -9045,7 +9075,7 @@ null,
|
|
|
9045
9075
|
isAsync: false,
|
|
9046
9076
|
isManualAsync: _trampoline22.manuallyAsync,
|
|
9047
9077
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatFlags.bind(null, 1),_liftFlatStringUTF8],
|
|
9048
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9078
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['type', _lowerFlatEnum.bind(null, 1), 96, 8 ],['linkCount', _lowerFlatU64, 96, 8 ],['size', _lowerFlatU64, 96, 8 ],['dataAccessTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['dataModificationTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['statusChangeTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],]), 104, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 104, 8, 8 ],])],
|
|
9049
9079
|
funcTypeIsAsync: false,
|
|
9050
9080
|
getCallbackFn: () => null,
|
|
9051
9081
|
getPostReturnFn: () => null,
|
|
@@ -9063,7 +9093,7 @@ null,
|
|
|
9063
9093
|
isAsync: false,
|
|
9064
9094
|
isManualAsync: _trampoline22.manuallyAsync,
|
|
9065
9095
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatFlags.bind(null, 1),_liftFlatStringUTF8],
|
|
9066
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9096
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatRecord.bind(null, [['type', _lowerFlatEnum.bind(null, 1), 96, 8 ],['linkCount', _lowerFlatU64, 96, 8 ],['size', _lowerFlatU64, 96, 8 ],['dataAccessTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['dataModificationTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],['statusChangeTimestamp', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['seconds', _lowerFlatU64, 16, 8 ],['nanoseconds', _lowerFlatU32, 16, 8 ],]), 24, 8, 8 ],[ 'none', null, 24, 8, 8 ],]), 96, 8 ],]), 104, 8, 8 ],[ 'err', _lowerFlatEnum.bind(null, 0), 104, 8, 8 ],])],
|
|
9067
9097
|
funcTypeIsAsync: false,
|
|
9068
9098
|
getCallbackFn: () => null,
|
|
9069
9099
|
getPostReturnFn: () => null,
|
|
@@ -9082,7 +9112,7 @@ null,
|
|
|
9082
9112
|
isAsync: false,
|
|
9083
9113
|
isManualAsync: _trampoline23.manuallyAsync,
|
|
9084
9114
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatFlags.bind(null, 1),_liftFlatStringUTF8,_liftFlatFlags.bind(null, 2),_liftFlatFlags.bind(null, 0)],
|
|
9085
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9115
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 6), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
9086
9116
|
funcTypeIsAsync: false,
|
|
9087
9117
|
getCallbackFn: () => null,
|
|
9088
9118
|
getPostReturnFn: () => null,
|
|
@@ -9100,7 +9130,7 @@ null,
|
|
|
9100
9130
|
isAsync: false,
|
|
9101
9131
|
isManualAsync: _trampoline23.manuallyAsync,
|
|
9102
9132
|
paramLiftFns: [_liftFlatBorrow.bind(null, 6),_liftFlatFlags.bind(null, 1),_liftFlatStringUTF8,_liftFlatFlags.bind(null, 2),_liftFlatFlags.bind(null, 0)],
|
|
9103
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9133
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOwn.bind(null, 6), 8, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 8, 4, 4 ],])],
|
|
9104
9134
|
funcTypeIsAsync: false,
|
|
9105
9135
|
getCallbackFn: () => null,
|
|
9106
9136
|
getPostReturnFn: () => null,
|
|
@@ -9119,7 +9149,7 @@ null,
|
|
|
9119
9149
|
isAsync: false,
|
|
9120
9150
|
isManualAsync: _trampoline24.manuallyAsync,
|
|
9121
9151
|
paramLiftFns: [_liftFlatBorrow.bind(null, 5)],
|
|
9122
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9152
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['type', _lowerFlatEnum.bind(null, 1), 12, 4 ],['name', _lowerFlatStringUTF8, 12, 4 ],]), 16, 4, 4 ],[ 'none', null, 16, 4, 4 ],]), 20, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 20, 4, 4 ],])],
|
|
9123
9153
|
funcTypeIsAsync: false,
|
|
9124
9154
|
getCallbackFn: () => null,
|
|
9125
9155
|
getPostReturnFn: () => null,
|
|
@@ -9137,7 +9167,7 @@ null,
|
|
|
9137
9167
|
isAsync: false,
|
|
9138
9168
|
isManualAsync: _trampoline24.manuallyAsync,
|
|
9139
9169
|
paramLiftFns: [_liftFlatBorrow.bind(null, 5)],
|
|
9140
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9170
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatOption([[ 'some', _lowerFlatRecord.bind(null, [['type', _lowerFlatEnum.bind(null, 1), 12, 4 ],['name', _lowerFlatStringUTF8, 12, 4 ],]), 16, 4, 4 ],[ 'none', null, 16, 4, 4 ],]), 20, 4, 4 ],[ 'err', _lowerFlatEnum.bind(null, 0), 20, 4, 4 ],])],
|
|
9141
9171
|
funcTypeIsAsync: false,
|
|
9142
9172
|
getCallbackFn: () => null,
|
|
9143
9173
|
getPostReturnFn: () => null,
|
|
@@ -9156,7 +9186,7 @@ null,
|
|
|
9156
9186
|
isAsync: false,
|
|
9157
9187
|
isManualAsync: _trampoline25.manuallyAsync,
|
|
9158
9188
|
paramLiftFns: [_liftFlatBorrow.bind(null, 1),_liftFlatU64],
|
|
9159
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9189
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatList({ elemLowerFn: _lowerFlatU8, typeIdx: 1 }), 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9160
9190
|
funcTypeIsAsync: false,
|
|
9161
9191
|
getCallbackFn: () => null,
|
|
9162
9192
|
getPostReturnFn: () => null,
|
|
@@ -9174,7 +9204,7 @@ null,
|
|
|
9174
9204
|
isAsync: false,
|
|
9175
9205
|
isManualAsync: _trampoline25.manuallyAsync,
|
|
9176
9206
|
paramLiftFns: [_liftFlatBorrow.bind(null, 1),_liftFlatU64],
|
|
9177
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9207
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatList({ elemLowerFn: _lowerFlatU8, typeIdx: 1 }), 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9178
9208
|
funcTypeIsAsync: false,
|
|
9179
9209
|
getCallbackFn: () => null,
|
|
9180
9210
|
getPostReturnFn: () => null,
|
|
@@ -9193,7 +9223,7 @@ null,
|
|
|
9193
9223
|
isAsync: false,
|
|
9194
9224
|
isManualAsync: _trampoline26.manuallyAsync,
|
|
9195
9225
|
paramLiftFns: [_liftFlatBorrow.bind(null, 1),_liftFlatU64],
|
|
9196
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9226
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatList({ elemLowerFn: _lowerFlatU8, typeIdx: 1 }), 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9197
9227
|
funcTypeIsAsync: false,
|
|
9198
9228
|
getCallbackFn: () => null,
|
|
9199
9229
|
getPostReturnFn: () => null,
|
|
@@ -9211,7 +9241,7 @@ null,
|
|
|
9211
9241
|
isAsync: false,
|
|
9212
9242
|
isManualAsync: _trampoline26.manuallyAsync,
|
|
9213
9243
|
paramLiftFns: [_liftFlatBorrow.bind(null, 1),_liftFlatU64],
|
|
9214
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9244
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatList({ elemLowerFn: _lowerFlatU8, typeIdx: 1 }), 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9215
9245
|
funcTypeIsAsync: false,
|
|
9216
9246
|
getCallbackFn: () => null,
|
|
9217
9247
|
getPostReturnFn: () => null,
|
|
@@ -9230,7 +9260,7 @@ null,
|
|
|
9230
9260
|
isAsync: false,
|
|
9231
9261
|
isManualAsync: _trampoline27.manuallyAsync,
|
|
9232
9262
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2)],
|
|
9233
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9263
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatU64, 16, 8, 8 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 16, 8, 8 ],])],
|
|
9234
9264
|
funcTypeIsAsync: false,
|
|
9235
9265
|
getCallbackFn: () => null,
|
|
9236
9266
|
getPostReturnFn: () => null,
|
|
@@ -9248,7 +9278,7 @@ null,
|
|
|
9248
9278
|
isAsync: false,
|
|
9249
9279
|
isManualAsync: _trampoline27.manuallyAsync,
|
|
9250
9280
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2)],
|
|
9251
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9281
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', _lowerFlatU64, 16, 8, 8 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 16, 8, 8 ],])],
|
|
9252
9282
|
funcTypeIsAsync: false,
|
|
9253
9283
|
getCallbackFn: () => null,
|
|
9254
9284
|
getPostReturnFn: () => null,
|
|
@@ -9267,7 +9297,7 @@ null,
|
|
|
9267
9297
|
isAsync: false,
|
|
9268
9298
|
isManualAsync: _trampoline28.manuallyAsync,
|
|
9269
9299
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2),_liftFlatList.bind(null, 1)],
|
|
9270
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9300
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', null, 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9271
9301
|
funcTypeIsAsync: false,
|
|
9272
9302
|
getCallbackFn: () => null,
|
|
9273
9303
|
getPostReturnFn: () => null,
|
|
@@ -9285,7 +9315,7 @@ null,
|
|
|
9285
9315
|
isAsync: false,
|
|
9286
9316
|
isManualAsync: _trampoline28.manuallyAsync,
|
|
9287
9317
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2),_liftFlatList.bind(null, 1)],
|
|
9288
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9318
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', null, 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9289
9319
|
funcTypeIsAsync: false,
|
|
9290
9320
|
getCallbackFn: () => null,
|
|
9291
9321
|
getPostReturnFn: () => null,
|
|
@@ -9304,7 +9334,7 @@ null,
|
|
|
9304
9334
|
isAsync: false,
|
|
9305
9335
|
isManualAsync: _trampoline29.manuallyAsync,
|
|
9306
9336
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2),_liftFlatList.bind(null, 1)],
|
|
9307
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9337
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', null, 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9308
9338
|
funcTypeIsAsync: false,
|
|
9309
9339
|
getCallbackFn: () => null,
|
|
9310
9340
|
getPostReturnFn: () => null,
|
|
@@ -9322,7 +9352,7 @@ null,
|
|
|
9322
9352
|
isAsync: false,
|
|
9323
9353
|
isManualAsync: _trampoline29.manuallyAsync,
|
|
9324
9354
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2),_liftFlatList.bind(null, 1)],
|
|
9325
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9355
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', null, 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9326
9356
|
funcTypeIsAsync: false,
|
|
9327
9357
|
getCallbackFn: () => null,
|
|
9328
9358
|
getPostReturnFn: () => null,
|
|
@@ -9341,7 +9371,7 @@ null,
|
|
|
9341
9371
|
isAsync: false,
|
|
9342
9372
|
isManualAsync: _trampoline30.manuallyAsync,
|
|
9343
9373
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2)],
|
|
9344
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9374
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', null, 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9345
9375
|
funcTypeIsAsync: false,
|
|
9346
9376
|
getCallbackFn: () => null,
|
|
9347
9377
|
getPostReturnFn: () => null,
|
|
@@ -9359,7 +9389,7 @@ null,
|
|
|
9359
9389
|
isAsync: false,
|
|
9360
9390
|
isManualAsync: _trampoline30.manuallyAsync,
|
|
9361
9391
|
paramLiftFns: [_liftFlatBorrow.bind(null, 2)],
|
|
9362
|
-
resultLowerFns: [_lowerFlatResult([
|
|
9392
|
+
resultLowerFns: [_lowerFlatResult([[ 'ok', null, 12, 4, 4 ],[ 'err', _lowerFlatVariant([[ 'last-operation-failed', _lowerFlatOwn.bind(null, 0), 8, 4, 4 ],[ 'closed', null, 8, 4, 4 ],]), 12, 4, 4 ],])],
|
|
9363
9393
|
funcTypeIsAsync: false,
|
|
9364
9394
|
getCallbackFn: () => null,
|
|
9365
9395
|
getPostReturnFn: () => null,
|
|
@@ -9452,7 +9482,7 @@ null,
|
|
|
9452
9482
|
isAsync: false,
|
|
9453
9483
|
isManualAsync: _trampoline33.manuallyAsync,
|
|
9454
9484
|
paramLiftFns: [],
|
|
9455
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
9485
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatOwn.bind(null, 3), 8, 4, 4 ],[ 'none', null, 8, 4, 4 ],])],
|
|
9456
9486
|
funcTypeIsAsync: false,
|
|
9457
9487
|
getCallbackFn: () => null,
|
|
9458
9488
|
getPostReturnFn: () => null,
|
|
@@ -9470,7 +9500,7 @@ null,
|
|
|
9470
9500
|
isAsync: false,
|
|
9471
9501
|
isManualAsync: _trampoline33.manuallyAsync,
|
|
9472
9502
|
paramLiftFns: [],
|
|
9473
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
9503
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatOwn.bind(null, 3), 8, 4, 4 ],[ 'none', null, 8, 4, 4 ],])],
|
|
9474
9504
|
funcTypeIsAsync: false,
|
|
9475
9505
|
getCallbackFn: () => null,
|
|
9476
9506
|
getPostReturnFn: () => null,
|
|
@@ -9489,7 +9519,7 @@ null,
|
|
|
9489
9519
|
isAsync: false,
|
|
9490
9520
|
isManualAsync: _trampoline34.manuallyAsync,
|
|
9491
9521
|
paramLiftFns: [],
|
|
9492
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
9522
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatOwn.bind(null, 4), 8, 4, 4 ],[ 'none', null, 8, 4, 4 ],])],
|
|
9493
9523
|
funcTypeIsAsync: false,
|
|
9494
9524
|
getCallbackFn: () => null,
|
|
9495
9525
|
getPostReturnFn: () => null,
|
|
@@ -9507,7 +9537,7 @@ null,
|
|
|
9507
9537
|
isAsync: false,
|
|
9508
9538
|
isManualAsync: _trampoline34.manuallyAsync,
|
|
9509
9539
|
paramLiftFns: [],
|
|
9510
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
9540
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatOwn.bind(null, 4), 8, 4, 4 ],[ 'none', null, 8, 4, 4 ],])],
|
|
9511
9541
|
funcTypeIsAsync: false,
|
|
9512
9542
|
getCallbackFn: () => null,
|
|
9513
9543
|
getPostReturnFn: () => null,
|
|
@@ -9526,7 +9556,7 @@ null,
|
|
|
9526
9556
|
isAsync: false,
|
|
9527
9557
|
isManualAsync: _trampoline35.manuallyAsync,
|
|
9528
9558
|
paramLiftFns: [],
|
|
9529
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
9559
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatOwn.bind(null, 4), 8, 4, 4 ],[ 'none', null, 8, 4, 4 ],])],
|
|
9530
9560
|
funcTypeIsAsync: false,
|
|
9531
9561
|
getCallbackFn: () => null,
|
|
9532
9562
|
getPostReturnFn: () => null,
|
|
@@ -9544,7 +9574,7 @@ null,
|
|
|
9544
9574
|
isAsync: false,
|
|
9545
9575
|
isManualAsync: _trampoline35.manuallyAsync,
|
|
9546
9576
|
paramLiftFns: [],
|
|
9547
|
-
resultLowerFns: [_lowerFlatOption.bind(null,
|
|
9577
|
+
resultLowerFns: [_lowerFlatOption([[ 'some', _lowerFlatOwn.bind(null, 4), 8, 4, 4 ],[ 'none', null, 8, 4, 4 ],])],
|
|
9548
9578
|
funcTypeIsAsync: false,
|
|
9549
9579
|
getCallbackFn: () => null,
|
|
9550
9580
|
getPostReturnFn: () => null,
|