@noir-lang/noir_wasm 1.0.0-beta.11-585175e.nightly → 1.0.0-beta.13-f666b6e.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,12 +1,12 @@
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 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
1
  export function init_log_level(level: string): void;
6
2
  export function build_info(): any;
7
- export function __wbg_constructor_44a036c3fdb5aede(): Object;
8
- export function __wbg_constructor_8690bc6d22521663(): Object;
9
- export function __wbg_constructor_9dcea322ef1a01f0(arg0: any): Error;
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
+ 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
+ export function __wbg_constructor_9e6e08ad74c23155(arg0: any): Error;
8
+ export function __wbg_constructor_bc9e222dd413146d(): Object;
9
+ export function __wbg_constructor_f758a113b158239d(): Object;
10
10
  export function __wbg_debug_3cb59063b29f58c1(arg0: any): void;
11
11
  export function __wbg_debug_e17b51583ca6a632(arg0: any, arg1: any, arg2: any, arg3: any): void;
12
12
  export function __wbg_error_524f506f44df1645(arg0: any): void;
@@ -1,43 +1,43 @@
1
1
  /**
2
- * This is a method that exposes the same API as `compile`
3
- * But uses the Context based APi internally
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;
9
+ /**
4
10
  * @param {string} entry_point
5
11
  * @param {DependencyGraph | null | undefined} dependency_graph
6
12
  * @param {PathToFileSourceMap} file_source_map
7
13
  * @returns {ProgramCompileResult}
8
14
  */
9
- export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
15
+ export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
10
16
  /**
11
- * This is a method that exposes the same API as `compile`
12
- * But uses the Context based APi internally
13
17
  * @param {string} entry_point
14
18
  * @param {DependencyGraph | null | undefined} dependency_graph
15
19
  * @param {PathToFileSourceMap} file_source_map
16
20
  * @returns {ContractCompileResult}
17
21
  */
18
- export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
22
+ export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
19
23
  /**
24
+ * This is a method that exposes the same API as `compile`
25
+ * But uses the Context based APi internally
20
26
  * @param {string} entry_point
21
27
  * @param {DependencyGraph | null | undefined} dependency_graph
22
28
  * @param {PathToFileSourceMap} file_source_map
23
29
  * @returns {ProgramCompileResult}
24
30
  */
25
- export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
31
+ export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
26
32
  /**
33
+ * This is a method that exposes the same API as `compile`
34
+ * But uses the Context based APi internally
27
35
  * @param {string} entry_point
28
36
  * @param {DependencyGraph | null | undefined} dependency_graph
29
37
  * @param {PathToFileSourceMap} file_source_map
30
38
  * @returns {ContractCompileResult}
31
39
  */
32
- export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
33
- /**
34
- * @param {string} level
35
- */
36
- export function init_log_level(level: string): void;
37
- /**
38
- * @returns {any}
39
- */
40
- export function build_info(): any;
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