@noir-lang/noir_wasm 1.0.0-beta.6-00d636c.nightly → 1.0.0-beta.6-cb4951d.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 +0 -0
- package/dist/node/main.js +29 -29
- package/dist/node/main.js.map +1 -1
- package/dist/types/build/cjs/index.d.ts +2 -2
- package/dist/types/build/esm/index.d.ts +14 -14
- package/dist/web/main.mjs +30 -30
- package/dist/web/main.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
1
|
export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
4
2
|
export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
5
3
|
export function init_log_level(level: string): void;
|
|
6
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_3902903c1f5d4112(arg0: any): Error;
|
|
8
8
|
export function __wbg_constructor_a76a8a7d51ed51ad(): Object;
|
|
9
9
|
export function __wbg_constructor_fdbebea93e1b63a2(): Object;
|
|
@@ -1,17 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @param {string} entry_point
|
|
3
|
-
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
4
|
-
* @param {PathToFileSourceMap} file_source_map
|
|
5
|
-
* @returns {ProgramCompileResult}
|
|
6
|
-
*/
|
|
7
|
-
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
8
|
-
/**
|
|
9
|
-
* @param {string} entry_point
|
|
10
|
-
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
11
|
-
* @param {PathToFileSourceMap} file_source_map
|
|
12
|
-
* @returns {ContractCompileResult}
|
|
13
|
-
*/
|
|
14
|
-
export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
|
|
15
1
|
/**
|
|
16
2
|
* This is a method that exposes the same API as `compile`
|
|
17
3
|
* But uses the Context based APi internally
|
|
@@ -38,6 +24,20 @@ export function init_log_level(level: string): void;
|
|
|
38
24
|
* @returns {any}
|
|
39
25
|
*/
|
|
40
26
|
export function build_info(): any;
|
|
27
|
+
/**
|
|
28
|
+
* @param {string} entry_point
|
|
29
|
+
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
30
|
+
* @param {PathToFileSourceMap} file_source_map
|
|
31
|
+
* @returns {ProgramCompileResult}
|
|
32
|
+
*/
|
|
33
|
+
export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
|
|
34
|
+
/**
|
|
35
|
+
* @param {string} entry_point
|
|
36
|
+
* @param {DependencyGraph | null | undefined} dependency_graph
|
|
37
|
+
* @param {PathToFileSourceMap} file_source_map
|
|
38
|
+
* @returns {ContractCompileResult}
|
|
39
|
+
*/
|
|
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
|