1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Add new derivation mechanism

This commit is contained in:
mcrakhman 2023-09-26 18:49:04 +02:00
parent d157908f05
commit 3608a6949f
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
17 changed files with 491 additions and 153 deletions

View file

@ -230,6 +230,20 @@ func (mr *MockObjectTreeMockRecorder) Id() *gomock.Call {
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Id", reflect.TypeOf((*MockObjectTree)(nil).Id))
}
// IsDerived mocks base method.
func (m *MockObjectTree) IsDerived() bool {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "IsDerived")
ret0, _ := ret[0].(bool)
return ret0
}
// IsDerived indicates an expected call of IsDerived.
func (mr *MockObjectTreeMockRecorder) IsDerived() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsDerived", reflect.TypeOf((*MockObjectTree)(nil).IsDerived))
}
// IterateFrom mocks base method.
func (m *MockObjectTree) IterateFrom(arg0 string, arg1 func(*objecttree.Change, []byte) (interface{}, error), arg2 func(*objecttree.Change) bool) error {
m.ctrl.T.Helper()