@noir-lang/noir_wasm 0.31.0-e100017.nightly → 0.31.0-e59ff8c.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 | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
2
|
-
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
3
1
|
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
4
2
|
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
3
|
+
export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
4
|
+
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
5
5
|
export function init_log_level(level: string): void;
|
|
6
6
|
export function build_info(): any;
|
|
7
7
|
export function __wbindgen_object_drop_ref(arg0: any): void;
|
|
@@ -1,35 +1,35 @@
|
|
|
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 | 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 | 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 | 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 | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
19
15
|
/**
|
|
16
|
+
* This is a method that exposes the same API as `compile`
|
|
17
|
+
* But uses the Context based APi internally
|
|
20
18
|
* @param {string} entry_point
|
|
21
19
|
* @param {DependencyGraph | undefined} dependency_graph
|
|
22
20
|
* @param {PathToFileSourceMap} file_source_map
|
|
23
21
|
* @returns {ProgramCompileResult}
|
|
24
22
|
*/
|
|
25
|
-
export function
|
|
23
|
+
export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
26
24
|
/**
|
|
25
|
+
* This is a method that exposes the same API as `compile`
|
|
26
|
+
* But uses the Context based APi internally
|
|
27
27
|
* @param {string} entry_point
|
|
28
28
|
* @param {DependencyGraph | undefined} dependency_graph
|
|
29
29
|
* @param {PathToFileSourceMap} file_source_map
|
|
30
30
|
* @returns {ContractCompileResult}
|
|
31
31
|
*/
|
|
32
|
-
export function
|
|
32
|
+
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
33
33
|
/**
|
|
34
34
|
* @param {string} level
|
|
35
35
|
*/
|