@noir-lang/noir_wasm 0.31.0-7b77bbf.nightly → 0.31.0-bf3a75a.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,13 +1,13 @@
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
- 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 | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
6
2
  export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
7
- export function __wbindgen_is_undefined(arg0: any): boolean;
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 | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
6
+ export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
8
7
  export function __wbindgen_object_drop_ref(arg0: any): void;
9
- export function __wbg_constructor_23a70262203c0d24(): number;
10
8
  export function __wbg_constructor_2a2d75afec348bca(arg0: any): number;
9
+ export function __wbindgen_is_undefined(arg0: any): boolean;
10
+ export function __wbg_constructor_23a70262203c0d24(): number;
11
11
  export function __wbg_new_abda76e883ba8a5f(): number;
12
12
  export function __wbg_stack_658279fe44541cf6(arg0: any, arg1: any): void;
13
13
  export function __wbg_error_f851667af71bcfc6(arg0: any, arg1: any): void;
@@ -1,17 +1,21 @@
1
1
  /**
2
+ * This is a method that exposes the same API as `compile`
3
+ * But uses the Context based APi internally
2
4
  * @param {string} entry_point
3
5
  * @param {DependencyGraph | undefined} dependency_graph
4
6
  * @param {PathToFileSourceMap} file_source_map
5
7
  * @returns {ProgramCompileResult}
6
8
  */
7
- export function compile_program(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
9
+ export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
8
10
  /**
11
+ * This is a method that exposes the same API as `compile`
12
+ * But uses the Context based APi internally
9
13
  * @param {string} entry_point
10
14
  * @param {DependencyGraph | undefined} dependency_graph
11
15
  * @param {PathToFileSourceMap} file_source_map
12
16
  * @returns {ContractCompileResult}
13
17
  */
14
- export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
18
+ export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
15
19
  /**
16
20
  * @param {string} level
17
21
  */
@@ -21,23 +25,19 @@ export function init_log_level(level: string): void;
21
25
  */
22
26
  export function build_info(): any;
23
27
  /**
24
- * This is a method that exposes the same API as `compile`
25
- * But uses the Context based APi internally
26
28
  * @param {string} entry_point
27
29
  * @param {DependencyGraph | undefined} dependency_graph
28
30
  * @param {PathToFileSourceMap} file_source_map
29
31
  * @returns {ProgramCompileResult}
30
32
  */
31
- export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
33
+ export function compile_program(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
32
34
  /**
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 | undefined} dependency_graph
37
37
  * @param {PathToFileSourceMap} file_source_map
38
38
  * @returns {ContractCompileResult}
39
39
  */
40
- export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
40
+ export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | 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