Skip to content

Commit 75f3e13

Browse files
committed
chore: test
1 parent b1ce740 commit 75f3e13

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

crates/loro-ffi/src/doc.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,10 @@ impl LoroDoc {
854854
pub fn delete_root_container(&self, cid: ContainerID) {
855855
self.doc.delete_root_container(cid.into());
856856
}
857+
858+
fn new_api(&self) {
859+
println!("new api");
860+
}
857861
}
858862

859863
pub trait ChangeAncestorsTraveler: Sync + Send {

crates/loro-internal/src/loro.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1915,6 +1915,10 @@ impl LoroDoc {
19151915
.hide_empty_root_containers
19161916
.store(hide, std::sync::atomic::Ordering::Relaxed);
19171917
}
1918+
1919+
fn new_api(&self) {
1920+
println!("new api");
1921+
}
19181922
}
19191923

19201924
// FIXME: PERF: This method is quite slow because it iterates all the changes

0 commit comments

Comments
 (0)