Skip to content

Commit 59136c2

Browse files
Merge pull request #47 from code0-tech/20-std-implementation-object
Object Function Implementations
2 parents 5f04ef1 + dde049a commit 59136c2

File tree

2 files changed

+575
-0
lines changed

2 files changed

+575
-0
lines changed

src/implementation/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use crate::registry::HandlerFn;
33
pub mod array;
44
pub mod boolean;
55
pub mod number;
6+
pub mod object;
67
pub mod text;
78

89
pub fn collect() -> Vec<(&'static str, HandlerFn)> {
@@ -12,6 +13,7 @@ pub fn collect() -> Vec<(&'static str, HandlerFn)> {
1213
result.extend(number::collect_number_functions());
1314
result.extend(boolean::collect_boolean_functions());
1415
result.extend(text::collect_text_functions());
16+
result.extend(object::collect_object_functions());
1517

1618
result
1719
}

0 commit comments

Comments
 (0)