@noir-lang/noir_wasm 0.30.0-e4eb5f5.nightly → 0.30.0-e73cdbb.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 init_log_level(level: string): void;
2
- export function build_info(): any;
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 init_log_level(level: string): void;
4
+ export function build_info(): any;
5
5
  export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
6
6
  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;
8
7
  export function __wbindgen_object_drop_ref(arg0: any): void;
9
- export function __wbg_constructor_400faf0d85826e9b(arg0: any): number;
10
8
  export function __wbg_constructor_f5d3b6dbabde0560(): number;
9
+ export function __wbg_constructor_400faf0d85826e9b(arg0: any): number;
10
+ export function __wbindgen_is_undefined(arg0: any): boolean;
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,12 +1,4 @@
1
1
  /**
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
- /**
10
2
  * @param {string} entry_point
11
3
  * @param {DependencyGraph | undefined} dependency_graph
12
4
  * @param {PathToFileSourceMap} file_source_map
@@ -21,6 +13,14 @@ export function compile_program(entry_point: string, dependency_graph: Dependenc
21
13
  */
22
14
  export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
23
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
24
  * This is a method that exposes the same API as `compile`
25
25
  * But uses the Context based APi internally
26
26
  * @param {string} entry_point