Skip to content

Commit

Permalink
Merge f1c0ee9 into 0eb771d
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jun 11, 2022
2 parents 0eb771d + f1c0ee9 commit 7f012fa
Show file tree
Hide file tree
Showing 16 changed files with 1,105 additions and 17 deletions.
1 change: 1 addition & 0 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 7f012fa

Please sign in to comment.