@noir-lang/noir_wasm 0.36.0 → 0.37.0-b74b4ea.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;
1
3
  export function compile_program(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
2
4
  export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
3
5
  export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
4
6
  export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
5
- export function init_log_level(level: string): void;
6
- export function build_info(): any;
7
7
  export function __wbindgen_object_drop_ref(arg0: any): void;
8
- export function __wbg_constructor_42abc892058cbf24(): number;
8
+ export function __wbg_constructor_b2eb6c76844c9298(arg0: any): number;
9
9
  export function __wbindgen_is_undefined(arg0: any): boolean;
10
- export function __wbg_constructor_00b064bf8f1c4a5d(arg0: any): number;
10
+ export function __wbg_constructor_42de8bc8dcb2b8b0(): 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,4 +1,12 @@
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
+ /**
2
10
  * @param {string} entry_point
3
11
  * @param {DependencyGraph | undefined} dependency_graph
4
12
  * @param {PathToFileSourceMap} file_source_map
@@ -31,14 +39,6 @@ export function compile_program_(entry_point: string, dependency_graph: Dependen
31
39
  */
32
40
  export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
33
41
  /**
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.