@noir-lang/noir_wasm 0.31.0-ef44270.nightly → 0.32.0

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
1
  export function compile_program(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
2
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
3
  export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
6
4
  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;
5
+ export function init_log_level(level: string): void;
6
+ export function build_info(): any;
8
7
  export function __wbindgen_object_drop_ref(arg0: any): void;
9
- export function __wbg_constructor_23a70262203c0d24(): number;
10
- export function __wbg_constructor_2a2d75afec348bca(arg0: any): number;
8
+ export function __wbg_constructor_1e8197daa87b8402(): number;
9
+ export function __wbindgen_is_undefined(arg0: any): boolean;
10
+ export function __wbg_constructor_1c9ff776d22374a5(arg0: any): 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;
@@ -13,14 +13,6 @@ export function compile_program(entry_point: string, dependency_graph: Dependenc
13
13
  */
14
14
  export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
15
15
  /**
16
- * @param {string} level
17
- */
18
- export function init_log_level(level: string): void;
19
- /**
20
- * @returns {any}
21
- */
22
- export function build_info(): any;
23
- /**
24
16
  * This is a method that exposes the same API as `compile`
25
17
  * But uses the Context based APi internally
26
18
  * @param {string} entry_point
@@ -39,6 +31,14 @@ export function compile_program_(entry_point: string, dependency_graph: Dependen
39
31
  */
40
32
  export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
41
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;
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
44
44
  * then the impl block is not picked up in javascript.