@noir-lang/noir_wasm
Advanced tools
Comparing version 0.3.2-bcdfd526 to 0.3.2-daf5c9d
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export const memory: WebAssembly.Memory; | ||
export function init_log_level(a: number, b: number): void; | ||
export function compile(a: number): number; | ||
@@ -10,2 +9,3 @@ export function acir_from_bytes(a: number, b: number): number; | ||
export function acir_write_bytes(a: number, b: number): void; | ||
export function init_log_level(a: number, b: number): void; | ||
export function build_info(): number; | ||
@@ -12,0 +12,0 @@ export function __wbindgen_export_0(a: number): number; |
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* @param {string} level | ||
*/ | ||
export function init_log_level(level: string): void; | ||
/** | ||
* @param {any} args | ||
@@ -33,4 +29,8 @@ * @returns {any} | ||
/** | ||
* @param {string} level | ||
*/ | ||
export function init_log_level(level: string): void; | ||
/** | ||
* @returns {any} | ||
*/ | ||
export function build_info(): any; |
@@ -121,11 +121,2 @@ let imports = {}; | ||
/** | ||
* @param {string} level | ||
*/ | ||
module.exports.init_log_level = function(level) { | ||
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); | ||
const len0 = WASM_VECTOR_LEN; | ||
wasm.init_log_level(ptr0, len0); | ||
}; | ||
/** | ||
* @param {any} args | ||
@@ -207,2 +198,11 @@ * @returns {any} | ||
/** | ||
* @param {string} level | ||
*/ | ||
module.exports.init_log_level = function(level) { | ||
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); | ||
const len0 = WASM_VECTOR_LEN; | ||
wasm.init_log_level(ptr0, len0); | ||
}; | ||
/** | ||
* @returns {any} | ||
@@ -237,2 +237,7 @@ */ | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
const ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_new_abda76e883ba8a5f = function() { | ||
@@ -259,7 +264,2 @@ const ret = new Error(); | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
const ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_readfile_a43240e6f11dd5eb = function() { return handleError(function (arg0, arg1, arg2) { | ||
@@ -266,0 +266,0 @@ const ret = read_file(getStringFromWasm0(arg1, arg2)); |
@@ -6,3 +6,3 @@ { | ||
], | ||
"version": "0.3.2-bcdfd526", | ||
"version": "0.3.2-daf5c9d", | ||
"files": [ | ||
@@ -18,3 +18,3 @@ "nodejs", | ||
"peerDependencies": { | ||
"@noir-lang/noir-source-resolver": "1.1.0" | ||
"@noir-lang/noir-source-resolver": "1.1.1" | ||
}, | ||
@@ -26,4 +26,4 @@ "repository": { | ||
"compiler": { | ||
"versionHash": "bcdfd526fe2b5339cfad487a00e9fcbdb70c45dc" | ||
"versionHash": "daf5c9d76820cc53cba1104b4d5c688ea0121117" | ||
} | ||
} |
# Noir Lang WASM JavaScript Package | ||
## Tracks | ||
Noir lang Repository [noir-lang/noir@bcdfd526](https://github.com/noir-lang/noir/tree/bcdfd526fe2b5339cfad487a00e9fcbdb70c45dc) | ||
Noir lang Repository [noir-lang/noir@daf5c9d](https://github.com/noir-lang/noir/tree/daf5c9d76820cc53cba1104b4d5c688ea0121117) |
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export const memory: WebAssembly.Memory; | ||
export function init_log_level(a: number, b: number): void; | ||
export function compile(a: number): number; | ||
@@ -10,2 +9,3 @@ export function acir_from_bytes(a: number, b: number): number; | ||
export function acir_write_bytes(a: number, b: number): void; | ||
export function init_log_level(a: number, b: number): void; | ||
export function build_info(): number; | ||
@@ -12,0 +12,0 @@ export function __wbindgen_export_0(a: number): number; |
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* @param {string} level | ||
*/ | ||
export function init_log_level(level: string): void; | ||
/** | ||
* @param {any} args | ||
@@ -33,2 +29,6 @@ * @returns {any} | ||
/** | ||
* @param {string} level | ||
*/ | ||
export function init_log_level(level: string): void; | ||
/** | ||
* @returns {any} | ||
@@ -42,3 +42,2 @@ */ | ||
readonly memory: WebAssembly.Memory; | ||
readonly init_log_level: (a: number, b: number) => void; | ||
readonly compile: (a: number) => number; | ||
@@ -49,2 +48,3 @@ readonly acir_from_bytes: (a: number, b: number) => number; | ||
readonly acir_write_bytes: (a: number, b: number) => void; | ||
readonly init_log_level: (a: number, b: number) => void; | ||
readonly build_info: () => number; | ||
@@ -51,0 +51,0 @@ readonly __wbindgen_export_0: (a: number) => number; |
@@ -119,11 +119,2 @@ import { read_file } from '@noir-lang/noir-source-resolver'; | ||
/** | ||
* @param {string} level | ||
*/ | ||
export function init_log_level(level) { | ||
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); | ||
const len0 = WASM_VECTOR_LEN; | ||
wasm.init_log_level(ptr0, len0); | ||
} | ||
/** | ||
* @param {any} args | ||
@@ -205,2 +196,11 @@ * @returns {any} | ||
/** | ||
* @param {string} level | ||
*/ | ||
export function init_log_level(level) { | ||
const ptr0 = passStringToWasm0(level, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1); | ||
const len0 = WASM_VECTOR_LEN; | ||
wasm.init_log_level(ptr0, len0); | ||
} | ||
/** | ||
* @returns {any} | ||
@@ -266,2 +266,6 @@ */ | ||
}; | ||
imports.wbg.__wbindgen_string_new = function(arg0, arg1) { | ||
const ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
imports.wbg.__wbg_new_abda76e883ba8a5f = function() { | ||
@@ -285,6 +289,2 @@ const ret = new Error(); | ||
}; | ||
imports.wbg.__wbindgen_string_new = function(arg0, arg1) { | ||
const ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
imports.wbg.__wbg_readfile_a43240e6f11dd5eb = function() { return handleError(function (arg0, arg1, arg2) { | ||
@@ -291,0 +291,0 @@ const ret = read_file(getStringFromWasm0(arg1, arg2)); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
8937223
410
19
1