Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gpwclark committed Feb 8, 2024
1 parent 6fb8657 commit 82c7d02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion compiler/src/compile/compile_let.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ pub(crate) fn compile_let(
#[cfg(test)]
mod tests {
use super::*;
use crate::test_utils::utils::{assert_vals, exec, exec_compile_error, exec_runtime_error, read_test};
use crate::test_utils::utils::{
assert_vals, exec, exec_compile_error, exec_runtime_error, read_test,
};
use builtins::print::{dasm, prn};
use compile_state::state::new_slosh_vm;

Expand Down
6 changes: 3 additions & 3 deletions compiler/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pub mod utils;
// paths that start with crate:: (because test_utils/utils.rs can be
// imported in any crate in the workspace and therefore should not
// have any contextual use statements).
use crate::pass1::pass1;
use crate::{compile, ReadError, Reader};
use compile_state::state::{CompileState, SloshVm, SloshVmTrait};
use slvm::{RET, Value};
use slvm::{Value, RET};
use std::sync::Arc;
use crate::{compile, Reader, ReadError};
use crate::pass1::pass1;

0 comments on commit 82c7d02

Please sign in to comment.