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