Skip to content

Commit

Permalink
Fix rebase bug
Browse files Browse the repository at this point in the history
  • Loading branch information
raskad committed Aug 16, 2022
1 parent 8a14729 commit 8df810e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boa_engine/src/object/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ unsafe impl Trace for ObjectKind {
Self::RegExpStringIterator(i) => mark(i),
Self::DataView(v) => mark(v),
Self::ForInIterator(i) => mark(i),
Self::Function(f) | Self::GeneratorFunction(f) => mark(f),
Self::Function(f) | Self::GeneratorFunction(f) | Self::AsyncGeneratorFunction(f) => mark(f),
Self::BoundFunction(f) => mark(f),
Self::Generator(g) => mark(g),
Self::Set(s) => mark(s),
Expand All @@ -224,6 +224,7 @@ unsafe impl Trace for ObjectKind {
#[cfg(feature = "intl")]
Self::DateTimeFormat(f) => mark(f),
Self::Promise(p) => mark(p),
Self::AsyncGenerator(g) => mark(g),
Self::RegExp(_)
| Self::BigInt(_)
| Self::Boolean(_)
Expand Down

0 comments on commit 8df810e

Please sign in to comment.