-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1 changes] fix: Change panic to error in interpreter (noir-lang/noir…
…#5446) feat: Add more slice methods to the stdlib (noir-lang/noir#5424) feat: Unquote multiple items from annotations (noir-lang/noir#5441) chore: move SSA checks to a new folder (noir-lang/noir#5434) feat: lsp rename/find-all-references for type aliases (noir-lang/noir#5414) chore: dummy workflow (noir-lang/noir#5438) chore: refactor logic around inlining `no_predicates` functions (noir-lang/noir#5433) chore: extracts refactoring of reading error payloads from #5403 (noir-lang/noir#5413) fix: lsp struct rename/reference difference (noir-lang/noir#5411) chore: merge `BarretenbergVerifierBackend` and `BarretenbergBackend` (noir-lang/noir#5399) feat: Sync from aztec-packages (noir-lang/noir#5432)
- Loading branch information
Showing
47 changed files
with
656 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
30c50f52a6d58163e39006b73f4eb5003afc239b | ||
d44f882be094bf492b1742370fd3896b0c371f59 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: Mirror Repositories | ||
on: | ||
workflow_dispatch: {} | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo Dummy workflow TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ use self::{ | |
}; | ||
|
||
mod acir_gen; | ||
mod checks; | ||
pub(super) mod function_builder; | ||
pub mod ir; | ||
mod opt; | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mod check_for_underconstrained_values; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.