@noir-lang/noir_wasm 1.0.0-beta.15-5a85979.nightly → 1.0.0-beta.15-1fce7ca.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
+ export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
2
+ export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
1
3
  export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
2
4
  export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
3
5
  export function init_log_level(level: string): void;
4
6
  export function build_info(): any;
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_1e4d5469febb9b6c(): Object;
8
8
  export function __wbg_constructor_b08c0191c1f19ade(arg0: any): Error;
9
9
  export function __wbg_constructor_d3cd3b21489af3e8(): Object;
@@ -1,43 +1,43 @@
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 | null | 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 | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
9
+ export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | 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 | null | 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 | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
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;
18
+ export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
23
19
  /**
24
- * This is a method that exposes the same API as `compile`
25
- * But uses the Context based APi internally
26
20
  * @param {string} entry_point
27
21
  * @param {DependencyGraph | null | undefined} dependency_graph
28
22
  * @param {PathToFileSourceMap} file_source_map
29
23
  * @returns {ProgramCompileResult}
30
24
  */
31
- export function compile_program_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
25
+ export function compile_program(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ProgramCompileResult;
32
26
  /**
33
- * This is a method that exposes the same API as `compile`
34
- * But uses the Context based APi internally
35
27
  * @param {string} entry_point
36
28
  * @param {DependencyGraph | null | undefined} dependency_graph
37
29
  * @param {PathToFileSourceMap} file_source_map
38
30
  * @returns {ContractCompileResult}
39
31
  */
40
- export function compile_contract_(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
32
+ export function compile_contract(entry_point: string, dependency_graph: DependencyGraph | null | undefined, file_source_map: PathToFileSourceMap): ContractCompileResult;
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
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