Skip to content

Commit

Permalink
Implement prototype of new Object design
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jul 12, 2021
1 parent 76f29fe commit a336961
Show file tree
Hide file tree
Showing 4 changed files with 744 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions boa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ ryu-js = "0.2.1"
chrono = "0.4.19"
fast-float = "0.2.0"
unicode-normalization = "0.1.19"
enum_dispatch = "0.3.7"
delegate = "0.6.0"

# Optional Dependencies
measureme = { version = "9.1.2", optional = true }
Expand Down
1 change: 1 addition & 0 deletions boa/src/object/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ mod tests;
mod gcobject;
mod internal_methods;
mod iter;
mod object_;

use crate::builtins::object::for_in_iterator::ForInIterator;
pub use gcobject::{GcObject, RecursionLimiter, Ref, RefMut};
Expand Down
Loading

0 comments on commit a336961

Please sign in to comment.