Skip to content

Commit

Permalink
Rewrite basic expressions in Rust
Browse files Browse the repository at this point in the history
Ref. eng/recordflux/RecordFlux#1774
  • Loading branch information
treiher committed Dec 12, 2024
1 parent 2f8a699 commit 4743adc
Show file tree
Hide file tree
Showing 23 changed files with 2,391 additions and 268 deletions.
4 changes: 4 additions & 0 deletions librapidflux/src/diagnostics/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,10 @@ impl Error {
&self.entries
}

pub fn into_entries(self) -> Vec<Entry> {
self.entries
}

pub fn set_max_error(max: u64) {
MAX_ERROR_COUNT.store(max, Ordering::Relaxed);
}
Expand Down
Loading

0 comments on commit 4743adc

Please sign in to comment.