@noir-lang/noir_wasm 1.0.0-beta.4-3fb324e.nightly → 1.0.0-beta.4-097b116.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
2
|
-
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
3
1
|
export function init_log_level(level: string): void;
|
|
4
2
|
export function build_info(): any;
|
|
3
|
+
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
4
|
+
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
5
5
|
export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
6
6
|
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
7
7
|
export function __wbg_constructor_0ff2131ceea4cfb0(arg0: any): Error;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @param {string} level
|
|
3
|
+
*/
|
|
4
|
+
export function init_log_level(level: string): void;
|
|
5
|
+
/**
|
|
6
|
+
* @returns {any}
|
|
7
|
+
*/
|
|
8
|
+
export function build_info(): any;
|
|
1
9
|
/**
|
|
2
10
|
* @param {string} entry_point
|
|
3
11
|
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
@@ -12,14 +20,6 @@ export function compile_program(entry_point: string, dependency_graph: Dependenc
|
|
|
12
20
|
* @returns {ContractCompileResult}
|
|
13
21
|
*/
|
|
14
22
|
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
15
|
-
/**
|
|
16
|
-
* @param {string} level
|
|
17
|
-
*/
|
|
18
|
-
export function init_log_level(level: string): void;
|
|
19
|
-
/**
|
|
20
|
-
* @returns {any}
|
|
21
|
-
*/
|
|
22
|
-
export function build_info(): any;
|
|
23
23
|
/**
|
|
24
24
|
* This is a method that exposes the same API as `compile`
|
|
25
25
|
* But uses the Context based APi internally
|