Skip to content

Commit

Permalink
Removed non-needed import
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed May 10, 2020
1 parent 9465814 commit 92e0b7c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions boa/src/builtins/regexp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
//! [spec]: https://tc39.es/ecma262/#sec-regexp-constructor
//! [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
use gc::{unsafe_empty_trace, Finalize, Gc, Trace};
use regex::Regex;
use std::ops::Deref;

use crate::{
builtins::{
object::{InternalState, Object, ObjectInternalMethods, ObjectKind, PROTOTYPE},
Expand All @@ -21,6 +17,9 @@ use crate::{
},
exec::Interpreter,
};
use gc::{unsafe_empty_trace, Finalize, Trace};
use regex::Regex;
use std::ops::Deref;

#[cfg(test)]
mod tests;
Expand Down

0 comments on commit 92e0b7c

Please sign in to comment.