Skip to content

Commit

Permalink
Merge ee6b955 into 5002b9b
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jun 9, 2022
2 parents 5002b9b + ee6b955 commit 0fd5ac0
Show file tree
Hide file tree
Showing 11 changed files with 1,041 additions and 13 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion boa_engine/src/builtins/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ pub mod math;
pub mod nan;
pub mod number;
pub mod object;
pub mod promise;
pub mod proxy;
pub mod reflect;
pub mod regexp;
Expand Down Expand Up @@ -57,6 +58,7 @@ pub(crate) use self::{
number::Number,
object::for_in_iterator::ForInIterator,
object::Object as BuiltInObjectObject,
promise::Promise,
proxy::Proxy,
reflect::Reflect,
regexp::RegExp,
Expand Down Expand Up @@ -182,7 +184,8 @@ pub fn init(context: &mut Context) {
AggregateError,
Reflect,
Generator,
GeneratorFunction
GeneratorFunction,
Promise
};

#[cfg(feature = "intl")]
Expand Down

0 comments on commit 0fd5ac0

Please sign in to comment.