Skip to content

Commit dde049a

Browse files
committed
feat: added object function implementations
1 parent 5f04ef1 commit dde049a

2 files changed

Lines changed: 575 additions & 0 deletions

File tree

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)