mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
33788f6361
* feat: add script bootstrap and script generate-metadata CLI commands * Address PR comments on code
833 lines
22 KiB
JavaScript
833 lines
22 KiB
JavaScript
// @generated file from wasmbuild -- do not edit
|
|
// deno-lint-ignore-file
|
|
// deno-fmt-ignore-file
|
|
// source-hash: f38890e80d35ec2affe2a260e12308f96bcbf771
|
|
let wasm;
|
|
|
|
const heap = new Array(128).fill(undefined);
|
|
|
|
heap.push(undefined, null, true, false);
|
|
|
|
function getObject(idx) {
|
|
return heap[idx];
|
|
}
|
|
|
|
let heap_next = heap.length;
|
|
|
|
function dropObject(idx) {
|
|
if (idx < 132) return;
|
|
heap[idx] = heap_next;
|
|
heap_next = idx;
|
|
}
|
|
|
|
function takeObject(idx) {
|
|
const ret = getObject(idx);
|
|
dropObject(idx);
|
|
return ret;
|
|
}
|
|
|
|
let WASM_VECTOR_LEN = 0;
|
|
|
|
let cachedUint8Memory0 = null;
|
|
|
|
function getUint8Memory0() {
|
|
if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
|
|
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
|
}
|
|
return cachedUint8Memory0;
|
|
}
|
|
|
|
const cachedTextEncoder = typeof TextEncoder !== "undefined"
|
|
? new TextEncoder("utf-8")
|
|
: {
|
|
encode: () => {
|
|
throw Error("TextEncoder not available");
|
|
},
|
|
};
|
|
|
|
const encodeString = function (arg, view) {
|
|
return cachedTextEncoder.encodeInto(arg, view);
|
|
};
|
|
|
|
function passStringToWasm0(arg, malloc, realloc) {
|
|
if (realloc === undefined) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
const ptr = malloc(buf.length, 1) >>> 0;
|
|
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
WASM_VECTOR_LEN = buf.length;
|
|
return ptr;
|
|
}
|
|
|
|
let len = arg.length;
|
|
let ptr = malloc(len, 1) >>> 0;
|
|
|
|
const mem = getUint8Memory0();
|
|
|
|
let offset = 0;
|
|
|
|
for (; offset < len; offset++) {
|
|
const code = arg.charCodeAt(offset);
|
|
if (code > 0x7F) break;
|
|
mem[ptr + offset] = code;
|
|
}
|
|
|
|
if (offset !== len) {
|
|
if (offset !== 0) {
|
|
arg = arg.slice(offset);
|
|
}
|
|
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
|
const ret = encodeString(arg, view);
|
|
|
|
offset += ret.written;
|
|
}
|
|
|
|
WASM_VECTOR_LEN = offset;
|
|
return ptr;
|
|
}
|
|
|
|
function isLikeNone(x) {
|
|
return x === undefined || x === null;
|
|
}
|
|
|
|
let cachedInt32Memory0 = null;
|
|
|
|
function getInt32Memory0() {
|
|
if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
|
|
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
|
}
|
|
return cachedInt32Memory0;
|
|
}
|
|
|
|
const cachedTextDecoder = typeof TextDecoder !== "undefined"
|
|
? new TextDecoder("utf-8", { ignoreBOM: true, fatal: true })
|
|
: {
|
|
decode: () => {
|
|
throw Error("TextDecoder not available");
|
|
},
|
|
};
|
|
|
|
if (typeof TextDecoder !== "undefined") cachedTextDecoder.decode();
|
|
|
|
function getStringFromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
}
|
|
|
|
function addHeapObject(obj) {
|
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
const idx = heap_next;
|
|
heap_next = heap[idx];
|
|
|
|
heap[idx] = obj;
|
|
return idx;
|
|
}
|
|
|
|
let cachedFloat64Memory0 = null;
|
|
|
|
function getFloat64Memory0() {
|
|
if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
|
|
cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer);
|
|
}
|
|
return cachedFloat64Memory0;
|
|
}
|
|
|
|
let cachedBigInt64Memory0 = null;
|
|
|
|
function getBigInt64Memory0() {
|
|
if (
|
|
cachedBigInt64Memory0 === null || cachedBigInt64Memory0.byteLength === 0
|
|
) {
|
|
cachedBigInt64Memory0 = new BigInt64Array(wasm.memory.buffer);
|
|
}
|
|
return cachedBigInt64Memory0;
|
|
}
|
|
|
|
function debugString(val) {
|
|
// primitive types
|
|
const type = typeof val;
|
|
if (type == "number" || type == "boolean" || val == null) {
|
|
return `${val}`;
|
|
}
|
|
if (type == "string") {
|
|
return `"${val}"`;
|
|
}
|
|
if (type == "symbol") {
|
|
const description = val.description;
|
|
if (description == null) {
|
|
return "Symbol";
|
|
} else {
|
|
return `Symbol(${description})`;
|
|
}
|
|
}
|
|
if (type == "function") {
|
|
const name = val.name;
|
|
if (typeof name == "string" && name.length > 0) {
|
|
return `Function(${name})`;
|
|
} else {
|
|
return "Function";
|
|
}
|
|
}
|
|
// objects
|
|
if (Array.isArray(val)) {
|
|
const length = val.length;
|
|
let debug = "[";
|
|
if (length > 0) {
|
|
debug += debugString(val[0]);
|
|
}
|
|
for (let i = 1; i < length; i++) {
|
|
debug += ", " + debugString(val[i]);
|
|
}
|
|
debug += "]";
|
|
return debug;
|
|
}
|
|
// Test for built-in
|
|
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
let className;
|
|
if (builtInMatches.length > 1) {
|
|
className = builtInMatches[1];
|
|
} else {
|
|
// Failed to match the standard '[object ClassName]'
|
|
return toString.call(val);
|
|
}
|
|
if (className == "Object") {
|
|
// we're a user defined class or Object
|
|
// JSON.stringify avoids problems with cycles, and is generally much
|
|
// easier than looping through ownProperties of `val`.
|
|
try {
|
|
return "Object(" + JSON.stringify(val) + ")";
|
|
} catch (_) {
|
|
return "Object";
|
|
}
|
|
}
|
|
// errors
|
|
if (val instanceof Error) {
|
|
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
}
|
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
return className;
|
|
}
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_deno(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_deno(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_outputs(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_outputs(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_ts_imports(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_ts_imports(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_bash(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_bash(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_powershell(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_powershell(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_go(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_go(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_python(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_python(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_sql(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_sql(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_mysql(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_mysql(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_bigquery(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_bigquery(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_snowflake(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_snowflake(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_mssql(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_mssql(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_graphql(code) {
|
|
let deferred2_0;
|
|
let deferred2_1;
|
|
try {
|
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
const ptr0 = passStringToWasm0(
|
|
code,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len0 = WASM_VECTOR_LEN;
|
|
wasm.parse_graphql(retptr, ptr0, len0);
|
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
deferred2_0 = r0;
|
|
deferred2_1 = r1;
|
|
return getStringFromWasm0(r0, r1);
|
|
} finally {
|
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
}
|
|
}
|
|
|
|
function handleError(f, args) {
|
|
try {
|
|
return f.apply(this, args);
|
|
} catch (e) {
|
|
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
}
|
|
}
|
|
|
|
const imports = {
|
|
__wbindgen_placeholder__: {
|
|
__wbindgen_object_drop_ref: function (arg0) {
|
|
takeObject(arg0);
|
|
},
|
|
__wbindgen_string_get: function (arg0, arg1) {
|
|
const obj = getObject(arg1);
|
|
const ret = typeof obj === "string" ? obj : undefined;
|
|
var ptr1 = isLikeNone(ret)
|
|
? 0
|
|
: passStringToWasm0(
|
|
ret,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
},
|
|
__wbindgen_error_new: function (arg0, arg1) {
|
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbindgen_boolean_get: function (arg0) {
|
|
const v = getObject(arg0);
|
|
const ret = typeof v === "boolean" ? (v ? 1 : 0) : 2;
|
|
return ret;
|
|
},
|
|
__wbindgen_is_bigint: function (arg0) {
|
|
const ret = typeof (getObject(arg0)) === "bigint";
|
|
return ret;
|
|
},
|
|
__wbindgen_bigint_from_i64: function (arg0) {
|
|
const ret = arg0;
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbindgen_jsval_eq: function (arg0, arg1) {
|
|
const ret = getObject(arg0) === getObject(arg1);
|
|
return ret;
|
|
},
|
|
__wbindgen_bigint_from_u64: function (arg0) {
|
|
const ret = BigInt.asUintN(64, arg0);
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbindgen_number_get: function (arg0, arg1) {
|
|
const obj = getObject(arg1);
|
|
const ret = typeof obj === "number" ? obj : undefined;
|
|
getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
|
|
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
},
|
|
__wbindgen_is_object: function (arg0) {
|
|
const val = getObject(arg0);
|
|
const ret = typeof val === "object" && val !== null;
|
|
return ret;
|
|
},
|
|
__wbindgen_in: function (arg0, arg1) {
|
|
const ret = getObject(arg0) in getObject(arg1);
|
|
return ret;
|
|
},
|
|
__wbg_eval_c330e1bec5b1705c: function (arg0, arg1) {
|
|
const ret = eval(getStringFromWasm0(arg0, arg1));
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbindgen_jsval_loose_eq: function (arg0, arg1) {
|
|
const ret = getObject(arg0) == getObject(arg1);
|
|
return ret;
|
|
},
|
|
__wbg_get_f01601b5a68d10e3: function (arg0, arg1) {
|
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_length_1009b1af0c481d7b: function (arg0) {
|
|
const ret = getObject(arg0).length;
|
|
return ret;
|
|
},
|
|
__wbindgen_is_function: function (arg0) {
|
|
const ret = typeof (getObject(arg0)) === "function";
|
|
return ret;
|
|
},
|
|
__wbg_next_9b877f231f476d01: function (arg0) {
|
|
const ret = getObject(arg0).next;
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_next_6529ee0cca8d57ed: function () {
|
|
return handleError(function (arg0) {
|
|
const ret = getObject(arg0).next();
|
|
return addHeapObject(ret);
|
|
}, arguments);
|
|
},
|
|
__wbg_done_5fe336b092d60cf2: function (arg0) {
|
|
const ret = getObject(arg0).done;
|
|
return ret;
|
|
},
|
|
__wbg_value_0c248a78fdc8e19f: function (arg0) {
|
|
const ret = getObject(arg0).value;
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_iterator_db7ca081358d4fb2: function () {
|
|
const ret = Symbol.iterator;
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_get_7b48513de5dc5ea4: function () {
|
|
return handleError(function (arg0, arg1) {
|
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments);
|
|
},
|
|
__wbg_call_90c26b09837aba1c: function () {
|
|
return handleError(function (arg0, arg1) {
|
|
const ret = getObject(arg0).call(getObject(arg1));
|
|
return addHeapObject(ret);
|
|
}, arguments);
|
|
},
|
|
__wbg_isArray_74fb723e24f76012: function (arg0) {
|
|
const ret = Array.isArray(getObject(arg0));
|
|
return ret;
|
|
},
|
|
__wbg_instanceof_ArrayBuffer_e7d53d51371448e2: function (arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof ArrayBuffer;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
},
|
|
__wbg_isSafeInteger_f93fde0dca9820f8: function (arg0) {
|
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
return ret;
|
|
},
|
|
__wbg_entries_9e2e2aa45aa5094a: function (arg0) {
|
|
const ret = Object.entries(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_buffer_a448f833075b71ba: function (arg0) {
|
|
const ret = getObject(arg0).buffer;
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_new_8f67e318f15d7254: function (arg0) {
|
|
const ret = new Uint8Array(getObject(arg0));
|
|
return addHeapObject(ret);
|
|
},
|
|
__wbg_set_2357bf09366ee480: function (arg0, arg1, arg2) {
|
|
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
|
},
|
|
__wbg_length_1d25fa9e4ac21ce7: function (arg0) {
|
|
const ret = getObject(arg0).length;
|
|
return ret;
|
|
},
|
|
__wbg_instanceof_Uint8Array_bced6f43aed8c1aa: function (arg0) {
|
|
let result;
|
|
try {
|
|
result = getObject(arg0) instanceof Uint8Array;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
},
|
|
__wbindgen_bigint_get_as_i64: function (arg0, arg1) {
|
|
const v = getObject(arg1);
|
|
const ret = typeof v === "bigint" ? v : undefined;
|
|
getBigInt64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? BigInt(0) : ret;
|
|
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
},
|
|
__wbindgen_debug_string: function (arg0, arg1) {
|
|
const ret = debugString(getObject(arg1));
|
|
const ptr1 = passStringToWasm0(
|
|
ret,
|
|
wasm.__wbindgen_malloc,
|
|
wasm.__wbindgen_realloc,
|
|
);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
},
|
|
__wbindgen_throw: function (arg0, arg1) {
|
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
},
|
|
__wbindgen_memory: function () {
|
|
const ret = wasm.memory;
|
|
return addHeapObject(ret);
|
|
},
|
|
},
|
|
};
|
|
|
|
import { Loader } from "https://deno.land/x/wasmbuild@0.15.4/loader.ts";
|
|
import { cacheToLocalDir } from "https://deno.land/x/wasmbuild@0.15.4/cache.ts";
|
|
|
|
const loader = new Loader({
|
|
imports,
|
|
cache: cacheToLocalDir,
|
|
});
|
|
/**
|
|
* Decompression callback
|
|
*
|
|
* @callback DecompressCallback
|
|
* @param {Uint8Array} compressed
|
|
* @return {Uint8Array} decompressed
|
|
*/
|
|
|
|
/**
|
|
* Options for instantiating a Wasm instance.
|
|
* @typedef {Object} InstantiateOptions
|
|
* @property {URL=} url - Optional url to the Wasm file to instantiate.
|
|
* @property {DecompressCallback=} decompress - Callback to decompress the
|
|
* raw Wasm file bytes before instantiating.
|
|
*/
|
|
|
|
/** Instantiates an instance of the Wasm module returning its functions.
|
|
* @remarks It is safe to call this multiple times and once successfully
|
|
* loaded it will always return a reference to the same object.
|
|
* @param {InstantiateOptions=} opts
|
|
*/
|
|
export async function instantiate(opts) {
|
|
return (await instantiateWithInstance(opts)).exports;
|
|
}
|
|
|
|
/** Instantiates an instance of the Wasm module along with its exports.
|
|
* @remarks It is safe to call this multiple times and once successfully
|
|
* loaded it will always return a reference to the same object.
|
|
* @param {InstantiateOptions=} opts
|
|
* @returns {Promise<{
|
|
* instance: WebAssembly.Instance;
|
|
* exports: { parse_deno: typeof parse_deno; parse_outputs: typeof parse_outputs; parse_ts_imports: typeof parse_ts_imports; parse_bash: typeof parse_bash; parse_powershell: typeof parse_powershell; parse_go: typeof parse_go; parse_python: typeof parse_python; parse_sql: typeof parse_sql; parse_mysql: typeof parse_mysql; parse_bigquery: typeof parse_bigquery; parse_snowflake: typeof parse_snowflake; parse_mssql: typeof parse_mssql; parse_graphql: typeof parse_graphql }
|
|
* }>}
|
|
*/
|
|
export async function instantiateWithInstance(opts) {
|
|
const { instance } = await loader.load(
|
|
opts?.url ?? new URL("windmill_parser_wasm_bg.wasm", import.meta.url),
|
|
opts?.decompress,
|
|
);
|
|
wasm = wasm ?? instance.exports;
|
|
cachedInt32Memory0 = cachedInt32Memory0 ?? new Int32Array(wasm.memory.buffer);
|
|
cachedUint8Memory0 = cachedUint8Memory0 ?? new Uint8Array(wasm.memory.buffer);
|
|
return {
|
|
instance,
|
|
exports: getWasmInstanceExports(),
|
|
};
|
|
}
|
|
|
|
function getWasmInstanceExports() {
|
|
return {
|
|
parse_deno,
|
|
parse_outputs,
|
|
parse_ts_imports,
|
|
parse_bash,
|
|
parse_powershell,
|
|
parse_go,
|
|
parse_python,
|
|
parse_sql,
|
|
parse_mysql,
|
|
parse_bigquery,
|
|
parse_snowflake,
|
|
parse_mssql,
|
|
parse_graphql,
|
|
};
|
|
}
|
|
|
|
/** Gets if the Wasm module has been instantiated. */
|
|
export function isInstantiated() {
|
|
return loader.instance != null;
|
|
}
|