@noir-lang/noir_wasm 1.0.0-beta.16-5a65dae.nightly → 1.0.0-beta.16-e0fba02.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,9 +1,9 @@
|
|
|
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
|
-
export function init_log_level(level: string): void;
|
|
4
|
-
export function build_info(): any;
|
|
5
1
|
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
6
2
|
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
3
|
+
export function init_log_level(level: string): void;
|
|
4
|
+
export function build_info(): any;
|
|
5
|
+
export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
6
|
+
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
7
7
|
export function __wbg_constructor_5cf2175056c019a8(): Object;
|
|
8
8
|
export function __wbg_constructor_606021204b398170(arg0: any): Error;
|
|
9
9
|
export function __wbg_constructor_d18ba7b816d0917b(): Object;
|
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This is a method that exposes the same API as `compile`
|
|
3
|
-
* But uses the Context based APi internally
|
|
4
2
|
* @param {string} entry_point
|
|
5
3
|
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
6
4
|
* @param {PathToFileSourceMap} file_source_map
|
|
7
5
|
* @returns {ProgramCompileResult}
|
|
8
6
|
*/
|
|
9
|
-
export function
|
|
7
|
+
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
10
8
|
/**
|
|
11
|
-
* This is a method that exposes the same API as `compile`
|
|
12
|
-
* But uses the Context based APi internally
|
|
13
9
|
* @param {string} entry_point
|
|
14
10
|
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
15
11
|
* @param {PathToFileSourceMap} file_source_map
|
|
16
12
|
* @returns {ContractCompileResult}
|
|
17
13
|
*/
|
|
18
|
-
export function
|
|
14
|
+
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
19
15
|
/**
|
|
20
16
|
* @param {string} level
|
|
21
17
|
*/
|
|
@@ -25,19 +21,23 @@ export function init_log_level(level: string): void;
|
|
|
25
21
|
*/
|
|
26
22
|
export function build_info(): any;
|
|
27
23
|
/**
|
|
24
|
+
* This is a method that exposes the same API as `compile`
|
|
25
|
+
* But uses the Context based APi internally
|
|
28
26
|
* @param {string} entry_point
|
|
29
27
|
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
30
28
|
* @param {PathToFileSourceMap} file_source_map
|
|
31
29
|
* @returns {ProgramCompileResult}
|
|
32
30
|
*/
|
|
33
|
-
export function
|
|
31
|
+
export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
34
32
|
/**
|
|
33
|
+
* This is a method that exposes the same API as `compile`
|
|
34
|
+
* But uses the Context based APi internally
|
|
35
35
|
* @param {string} entry_point
|
|
36
36
|
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
37
37
|
* @param {PathToFileSourceMap} file_source_map
|
|
38
38
|
* @returns {ContractCompileResult}
|
|
39
39
|
*/
|
|
40
|
-
export function
|
|
40
|
+
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
41
41
|
/**
|
|
42
42
|
* This is a wrapper class that is wasm-bindgen compatible
|
|
43
43
|
* We do not use js_name and rename it like CrateId because
|