@next/swc-wasm-web 12.2.5 → 12.2.6-canary.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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/wasm.js +28 -28
  3. package/wasm_bg.wasm +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next/swc-wasm-web",
3
- "version": "12.2.5",
3
+ "version": "12.2.6-canary.2",
4
4
  "files": [
5
5
  "wasm_bg.wasm",
6
6
  "wasm.js",
package/wasm.js CHANGED
@@ -21,9 +21,7 @@ function takeObject(idx) {
21
21
  return ret;
22
22
  }
23
23
 
24
- const cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
25
-
26
- cachedTextDecoder.decode();
24
+ let WASM_VECTOR_LEN = 0;
27
25
 
28
26
  let cachedUint8Memory0 = new Uint8Array();
29
27
 
@@ -34,21 +32,6 @@ function getUint8Memory0() {
34
32
  return cachedUint8Memory0;
35
33
  }
36
34
 
37
- function getStringFromWasm0(ptr, len) {
38
- return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
39
- }
40
-
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
- let WASM_VECTOR_LEN = 0;
51
-
52
35
  const cachedTextEncoder = new TextEncoder('utf-8');
53
36
 
54
37
  const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
@@ -115,6 +98,23 @@ function isLikeNone(x) {
115
98
  return x === undefined || x === null;
116
99
  }
117
100
 
101
+ const cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
102
+
103
+ cachedTextDecoder.decode();
104
+
105
+ function getStringFromWasm0(ptr, len) {
106
+ return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
107
+ }
108
+
109
+ function addHeapObject(obj) {
110
+ if (heap_next === heap.length) heap.push(heap.length + 1);
111
+ const idx = heap_next;
112
+ heap_next = heap[idx];
113
+
114
+ heap[idx] = obj;
115
+ return idx;
116
+ }
117
+
118
118
  function makeMutClosure(arg0, arg1, dtor, f) {
119
119
  const state = { a: arg0, b: arg1, cnt: 1, dtor };
120
120
  const real = (...args) => {
@@ -320,14 +320,6 @@ function getImports() {
320
320
  if (arg0 !== 0) { wasm.__wbindgen_free(arg0, arg1); }
321
321
  console.error(v0);
322
322
  };
323
- imports.wbg.__wbg_call_65af9f665ab6ade5 = function() { return handleError(function (arg0, arg1, arg2) {
324
- const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
325
- return addHeapObject(ret);
326
- }, arguments) };
327
- imports.wbg.__wbindgen_json_parse = function(arg0, arg1) {
328
- const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
329
- return addHeapObject(ret);
330
- };
331
323
  imports.wbg.__wbindgen_json_serialize = function(arg0, arg1) {
332
324
  const obj = getObject(arg1);
333
325
  const ret = JSON.stringify(obj === undefined ? null : obj);
@@ -370,6 +362,14 @@ imports.wbg.__wbg_new_52205195aa880fc2 = function(arg0, arg1) {
370
362
  state0.a = state0.b = 0;
371
363
  }
372
364
  };
365
+ imports.wbg.__wbg_call_65af9f665ab6ade5 = function() { return handleError(function (arg0, arg1, arg2) {
366
+ const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
367
+ return addHeapObject(ret);
368
+ }, arguments) };
369
+ imports.wbg.__wbindgen_json_parse = function(arg0, arg1) {
370
+ const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
371
+ return addHeapObject(ret);
372
+ };
373
373
  imports.wbg.__wbindgen_throw = function(arg0, arg1) {
374
374
  throw new Error(getStringFromWasm0(arg0, arg1));
375
375
  };
@@ -390,8 +390,8 @@ imports.wbg.__wbindgen_cb_drop = function(arg0) {
390
390
  const ret = false;
391
391
  return ret;
392
392
  };
393
- imports.wbg.__wbindgen_closure_wrapper15891 = function(arg0, arg1, arg2) {
394
- const ret = makeMutClosure(arg0, arg1, 223, __wbg_adapter_18);
393
+ imports.wbg.__wbindgen_closure_wrapper16026 = function(arg0, arg1, arg2) {
394
+ const ret = makeMutClosure(arg0, arg1, 167, __wbg_adapter_18);
395
395
  return addHeapObject(ret);
396
396
  };
397
397
 
package/wasm_bg.wasm CHANGED
Binary file