Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions compiler/noirc_frontend/src/ast/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ impl Display for TypeImpl {
}
}

// TODO(https://github.com/noir-lang/noir/issues/8306): display where clauses
impl Display for NoirTrait {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let generics = vecmap(&self.generics, |generic| generic.to_string());
Expand Down
4 changes: 2 additions & 2 deletions tooling/debugger/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn main() -> Result<(), String> {
// Rebuild if the tests have changed
println!("cargo:rerun-if-changed=tests");
println!("cargo:rerun-if-changed=ignored-tests.txt");
// TODO: Running the tests changes the timestamps on test_programs files (file lock?).
// TODO(https://github.com/noir-lang/noir/issues/8351): Running the tests changes the timestamps on test_programs files (file lock?).
// That has the knock-on effect of then needing to rebuild the tests after running the tests.
println!("cargo:rerun-if-changed={}", test_dir.as_os_str().to_str().unwrap());

Expand Down Expand Up @@ -107,7 +107,7 @@ fn generate_test_runner_debugger_tests(test_file: &mut File, test_data_dir: &Pat
.flatten()
.collect();
for test_name_line in test_names {
// TODO: get test name by regex perhaps?
// TODO(https://github.com/noir-lang/noir/issues/8352): get test name by regex perhaps?
let test_name = test_name_line
.split("fn ")
.collect::<Vec<&str>>()
Expand Down
2 changes: 0 additions & 2 deletions tooling/nargo_cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ fn main() -> Result<(), String> {

// Rebuild if the tests have changed
println!("cargo:rerun-if-changed=tests");
// TODO: Running the tests changes the timestamps on test_programs files (file lock?).
// That has the knock-on effect of then needing to rebuild the tests after running the tests.
println!("cargo:rerun-if-changed={}", test_dir.as_os_str().to_str().unwrap());

generate_execution_success_tests(&mut test_file, &test_dir);
Expand Down
Loading