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

[Merged by Bors] - Remove string-interner dependency and implement custom string Interner #2147

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
Undo array_iterator import list change
  • Loading branch information
jedel1043 committed Jun 30, 2022
commit eac41f52195cd67367c3f8e7b71f7cc03249012a
2 changes: 1 addition & 1 deletion boa_engine/src/builtins/array/array_iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use crate::{
symbol::WellKnownSymbols,
Context, JsResult,
};
use boa_gc::{Finalize, Trace};
use boa_profiler::Profiler;
use gc::{Finalize, Trace};

/// The Array Iterator object represents an iteration over an array. It implements the iterator protocol.
///
Expand Down