Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove unused imports #48

Merged
merged 1 commit into from
Feb 19, 2024
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
3 changes: 1 addition & 2 deletions src/opcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ mod tests {
use super::*;
use revm::{
db::{CacheDB, EmptyDB},
interpreter::{opcode, Contract, Interpreter},
EvmContext, Inspector,
interpreter::{opcode, Contract},
};

#[test]
Expand Down
2 changes: 1 addition & 1 deletion src/tracing/js/bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ where

#[cfg(test)]
mod tests {
use boa_engine::{object::builtins::JsArrayBuffer, property::Attribute, Source};
use boa_engine::{property::Attribute, Source};
use revm::db::{CacheDB, EmptyDB};

use crate::tracing::js::builtins::BIG_INT_JS;
Expand Down
1 change: 0 additions & 1 deletion src/tracing/js/builtins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ unsafe impl Trace for PrecompileList {
#[cfg(test)]
mod tests {
use super::*;
use boa_engine::Source;

#[test]
fn test_install_bigint() {
Expand Down
Loading