@noir-lang/noir_wasm 1.0.0-beta.6-e796dfd.nightly → 1.0.0-beta.6-4a4ab26.nightly
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/dist/node/index_bg.wasm
CHANGED
|
Binary file
|
package/dist/node/main.js
CHANGED
|
@@ -11471,23 +11471,6 @@ module.exports.compile_contract = function(entry_point, dependency_graph, file_s
|
|
|
11471
11471
|
return takeFromExternrefTable0(ret[0]);
|
|
11472
11472
|
};
|
|
11473
11473
|
|
|
11474
|
-
/**
|
|
11475
|
-
* @param {string} level
|
|
11476
|
-
*/
|
|
11477
|
-
module.exports.init_log_level = function(level) {
|
|
11478
|
-
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
11479
|
-
const len0 = WASM_VECTOR_LEN;
|
|
11480
|
-
wasm.init_log_level(ptr0, len0);
|
|
11481
|
-
};
|
|
11482
|
-
|
|
11483
|
-
/**
|
|
11484
|
-
* @returns {any}
|
|
11485
|
-
*/
|
|
11486
|
-
module.exports.build_info = function() {
|
|
11487
|
-
const ret = wasm.build_info();
|
|
11488
|
-
return ret;
|
|
11489
|
-
};
|
|
11490
|
-
|
|
11491
11474
|
/**
|
|
11492
11475
|
* This is a method that exposes the same API as `compile`
|
|
11493
11476
|
* But uses the Context based APi internally
|
|
@@ -11528,6 +11511,23 @@ module.exports.compile_contract_ = function(entry_point, dependency_graph, file_
|
|
|
11528
11511
|
return takeFromExternrefTable0(ret[0]);
|
|
11529
11512
|
};
|
|
11530
11513
|
|
|
11514
|
+
/**
|
|
11515
|
+
* @param {string} level
|
|
11516
|
+
*/
|
|
11517
|
+
module.exports.init_log_level = function(level) {
|
|
11518
|
+
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
11519
|
+
const len0 = WASM_VECTOR_LEN;
|
|
11520
|
+
wasm.init_log_level(ptr0, len0);
|
|
11521
|
+
};
|
|
11522
|
+
|
|
11523
|
+
/**
|
|
11524
|
+
* @returns {any}
|
|
11525
|
+
*/
|
|
11526
|
+
module.exports.build_info = function() {
|
|
11527
|
+
const ret = wasm.build_info();
|
|
11528
|
+
return ret;
|
|
11529
|
+
};
|
|
11530
|
+
|
|
11531
11531
|
const CompilerContextFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
11532
11532
|
? { register: () => {}, unregister: () => {} }
|
|
11533
11533
|
: new FinalizationRegistry(ptr => wasm.__wbg_compilercontext_free(ptr >>> 0, 1));
|