@noir-lang/noir_wasm 1.0.0-beta.4-96e8679.nightly → 1.0.0-beta.4-77b2261.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,9 +1,9 @@
1
1
  export function init_log_level(level: string): void;
2
2
  export function build_info(): any;
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
3
  export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
6
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
7
  export function __wbg_constructor_0ff2131ceea4cfb0(arg0: any): Error;
8
8
  export function __wbg_constructor_239bf9e0fa000b32(): Object;
9
9
  export function __wbg_constructor_b023a49b9a95d90c(): Object;
@@ -7,37 +7,37 @@ export function init_log_level(level: string): void;
7
7
  */
8
8
  export function build_info(): any;
9
9
  /**
10
+ * This is a method that exposes the same API as `compile`
11
+ * But uses the Context based APi internally
10
12
  * @param {string} entry_point
11
13
  * @param {DependencyGraph | null | undefined} dependency_graph
12
14
  * @param {PathToFileSourceMap} file_source_map
13
15
  * @returns {ProgramCompileResult}
14
16
  */
15
- export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
17
+ export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
16
18
  /**
19
+ * This is a method that exposes the same API as `compile`
20
+ * But uses the Context based APi internally
17
21
  * @param {string} entry_point
18
22
  * @param {DependencyGraph | null | undefined} dependency_graph
19
23
  * @param {PathToFileSourceMap} file_source_map
20
24
  * @returns {ContractCompileResult}
21
25
  */
22
- export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
26
+ export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
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 | null | 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 | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
33
+ export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | 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 | null | 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 | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
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