@materializeinc/sql-pretty 0.164.0-dev.0.19963 → 0.164.0-dev.0.19965
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/mz_sql_pretty_wasm_bg.js
CHANGED
|
@@ -89,7 +89,7 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
function takeFromExternrefTable0(idx) {
|
|
92
|
-
const value = wasm.
|
|
92
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
93
93
|
wasm.__externref_table_dealloc(idx);
|
|
94
94
|
return value;
|
|
95
95
|
}
|
|
@@ -137,7 +137,7 @@ function getArrayJsValueFromWasm0(ptr, len) {
|
|
|
137
137
|
const mem = getDataViewMemory0();
|
|
138
138
|
const result = [];
|
|
139
139
|
for (let i = ptr; i < ptr + 4 * len; i += 4) {
|
|
140
|
-
result.push(wasm.
|
|
140
|
+
result.push(wasm.__wbindgen_externrefs.get(mem.getUint32(i, true)));
|
|
141
141
|
}
|
|
142
142
|
wasm.__externref_drop_slice(ptr, len);
|
|
143
143
|
return result;
|
|
@@ -163,7 +163,7 @@ export function prettyStrs(queries, width) {
|
|
|
163
163
|
return v2;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
export function
|
|
166
|
+
export function __wbg_Error_e83987f665cf5504(arg0, arg1) {
|
|
167
167
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
168
168
|
return ret;
|
|
169
169
|
};
|
|
@@ -175,7 +175,7 @@ export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
|
175
175
|
};
|
|
176
176
|
|
|
177
177
|
export function __wbindgen_init_externref_table() {
|
|
178
|
-
const table = wasm.
|
|
178
|
+
const table = wasm.__wbindgen_externrefs;
|
|
179
179
|
const offset = table.grow(4);
|
|
180
180
|
table.set(0, undefined);
|
|
181
181
|
table.set(offset + 0, undefined);
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@materializeinc/sql-pretty",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "The pretty printer for Materialize's SQL dialect, with wasm build targets.",
|
|
5
|
-
"version": "0.164.0-dev.0.
|
|
5
|
+
"version": "0.164.0-dev.0.19965",
|
|
6
6
|
"files": [
|
|
7
7
|
"mz_sql_pretty_wasm_bg.wasm",
|
|
8
8
|
"mz_sql_pretty_wasm.js",
|